buildX static method

Future<void> buildX()

Implementation

static Future<void> buildX() async {
  print('Running `flutter pub get` …');
  await run(
      'flutter packages pub run build_runner build --delete-conflicting-outputs',
      verbose: true);
}