What input code did you provide to the formatter?
builder.writeImportedName(
[Uri.parse('package:riverpod_annotation/riverpod_annotation.dart')],
'riverpod',
);
What output did the formatter produce?
builder.writeImportedName([
Uri.parse(
'package:riverpod_annotation/riverpod_annotation.dart',
),
], 'riverpod');
What output did you expect or want the formatter to produce?
Describe how you expected the formatter to format the code, ideally by showing what you had in mind as code.
builder.writeImportedName(
[
Uri.parse(
'package:riverpod_annotation/riverpod_annotation.dart',
),
],
'riverpod',
);
Anything else we should know?
Thanks!