Skip to content

Instantly share code, notes, and snippets.

@ruan65
Created March 15, 2019 22:42
Show Gist options
  • Save ruan65/56e1226f09d10670edef4b5721fb5783 to your computer and use it in GitHub Desktop.
Save ruan65/56e1226f09d10670edef4b5721fb5783 to your computer and use it in GitHub Desktop.
import 'package:meta/meta.dart';
import 'package:tps_mobile_combined_maximo_app/global/bloc/export.dart';
@immutable
abstract class GlobalState {}
class GlobalMessageState extends GlobalState{
final GlobalMessage message;
GlobalMessageState(this.message);
}
class GlobalStateCheckingAuthentication extends GlobalState {}
class GlobalStateAuthenticated extends GlobalState {}
class GlobalStateUnauthenticated extends GlobalState {}
class GlobalStateAvoidDistinct extends GlobalState {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment