fix static method
this method will try to solve and arrange code
Implementation
static Future<void> fix() async {
try {
await Shell().run('dart fix --apply');
} catch (e) {
print(e.toString());
}
}
this method will try to solve and arrange code
static Future<void> fix() async {
try {
await Shell().run('dart fix --apply');
} catch (e) {
print(e.toString());
}
}