FormatTask constructor

FormatTask({
  1. required String projectPath,
})

Implementation

FormatTask({required this.projectPath})
    : super('dart', [
        'format',
        '--output=none',
        '--set-exit-if-changed',
        projectPath,
      ]);