Created
October 6, 2019 18:26
-
-
Save adityadroid/fc68c9b608163e770e29b3a4ea0a3cd3 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
| class UpdatingProfilePictureState extends ConfigState{} | |
| class ProfilePictureChangedState extends ConfigState{ | |
| final String profilePictureUrl; | |
| ProfilePictureChangedState(this.profilePictureUrl):super([profilePictureUrl]); | |
| @override | |
| String toString()=> 'ProfilePictureChangedState {profilePictureUrl: $profilePictureUrl}'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment