Created
March 15, 2019 22:42
-
-
Save ruan65/56e1226f09d10670edef4b5721fb5783 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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