Open
Description
Describe the bug
When generating code for a Riverpod provider that returns a Dart record with a single positional field, the generated code fails due to a missing trailing comma. Dart requires a trailing comma for single-field records to distinguish them from regular parentheses.
To Reproduce
import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'providers.g.dart';
// Works!
// @riverpod
// class Test extends _$Test {
// @override
// (int, int) build() {
// return (1, 2);
// }
// }
// Fails :(
@riverpod
class Test extends _$Test {
@override
(int,) build() {
return (1,);
}
}
line 10, column 68 of .: A record type with exactly one positional field requires a trailing comma.
10 │ final class TestProvider extends $AsyncNotifierProvider<Test, (int)> {
Expected behavior
The generated code should handle single-field records correctly with a trailing comma:
final class TestProvider extends $AsyncNotifierProvider<Test, (int,)>