Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcossevilla/a5310570314dd2770fbe46657bae71b7 to your computer and use it in GitHub Desktop.
Save marcossevilla/a5310570314dd2770fbe46657bae71b7 to your computer and use it in GitHub Desktop.
import 'package:freezed_annotation/freezed_annotation.dart';
part 'common_state.freezed.dart';
@freezed
abstract class CommonState with _$CommonState {
const factory CommonState(int value) = Data;
const factory CommonState.loading() = Loading;
const factory CommonState.error([String message]) = ErrorDetails;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment