Skip to content

Instantly share code, notes, and snippets.

@adityadroid
Created October 6, 2019 18:26
Show Gist options
  • Select an option

  • Save adityadroid/fc68c9b608163e770e29b3a4ea0a3cd3 to your computer and use it in GitHub Desktop.

Select an option

Save adityadroid/fc68c9b608163e770e29b3a4ea0a3cd3 to your computer and use it in GitHub Desktop.
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