We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using freezed in combination with bloc. I have 1 state class with enums for build and listener.
part 'example_state.freezed.dart';@freezed class ExampleState with _$ExampleState { const ExampleState._(); const factory ExampleState({ @Default(ExampleStateBuildStatus.loading) ExampleStateBuildStatus buildStatus, ExampleStateListenStatus? listenStatus, }) = _ExampleState; } enum ExampleStateBuildStatus { loading, loadSuccess, } enum ExampleStateListenStatus { error, }
Describe the solution you'd like A clear and concise description of what you want to happen.
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
The text was updated successfully, but these errors were encountered:
rrousselGit
No branches or pull requests
I am using freezed in combination with bloc. I have 1 state class with enums for build and listener.
part 'example_state.freezed.dart';@freezed class ExampleState with _$ExampleState { const ExampleState._(); const factory ExampleState({ @Default(ExampleStateBuildStatus.loading) ExampleStateBuildStatus buildStatus, ExampleStateListenStatus? listenStatus, }) = _ExampleState; } enum ExampleStateBuildStatus { loading, loadSuccess, } enum ExampleStateListenStatus { error, }
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
The text was updated successfully, but these errors were encountered: