Skip to content

Choose provider name with @Riverpod(name: 'providerName') #3958

Open
@BenjiFarquhar

Description

@BenjiFarquhar

This would enhance developer experience where we have a model class SizeInfo, and we want a provider called sizeInfoProvider, but that would require a naming conflict between the model and the provider class to get the desired name when using code gen:

// naming conflict
@riverpod 
class SizeInfo extends _$SizeInfo{}

So we might declare the provider as this to avoid the naming conflict with the model and get the provider name that we want:

@Riverpod(name: 'sizeInfoProvider') // or omit 'Provider' and automatically add it to every provider name. 
class SizeInfoNotifier extends _$SizeInfoNotifier{}

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions