pocketpy/plugins/flutter/lib/common.dart
blueloveTH ea78681172 up
Update analysis_options.yaml
2022-12-28 19:59:57 +08:00

9 lines
207 B
Dart

class PyOutput {
final String stdout;
final String stderr;
PyOutput(this.stdout, this.stderr);
PyOutput.fromJson(Map<String, dynamic> json)
: stdout = json['stdout'], stderr = json['stderr'];
}