Profile constructor

Profile({
  1. String? uid,
  2. String? email,
  3. String? phoneNumber,
  4. String? displayName,
  5. String? photoURL,
  6. bool? disabled,
  7. bool incomplete = true,
  8. Map roles = const {},
})

Implementation

Profile({
  this.uid,
  this.email,
  this.phoneNumber,
  this.displayName,
  this.photoURL,
  this.disabled,
  this.incomplete = true,
  this.roles = const {}
});