flutterCreateModule static method
Implementation
static Future<void> flutterCreateModule(
String path,
String? org,
) async {
LogService.info('Running `flutter create module $path` …');
await run(
'flutter create -t module --no-pub --org $org'
' "$path"',
verbose: true);
}