UserProfileState constructor

const UserProfileState({
  1. UserProfile? profile,
  2. bool isLoading = false,
  3. bool isEditing = false,
  4. String? error,
})

Implementation

const UserProfileState({
  this.profile,
  this.isLoading = false,
  this.isEditing = false,
  this.error,
});