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