Dart and Flutter command-line examples
To translate a Dart or Flutter project with the my_app project root directory:
sourceanalyzer -b MyProject my_app/
To translate the a_widget.dart file in the my_app project root directory:
sourceanalyzer -b MyProject my_app/a_widget.dart
To translate all dart source files in the my_dart_proj directory:
sourceanalyzer -b MyProject "my_dart_proj/**/*.dart"