pocketpy/plugins/flutter/lib/common.dart
blueloveTH 8d16b1b4f2 up
Update CHANGELOG.md
2023-02-02 20:35:32 +08:00

10 lines
217 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'];
}