UserEmail constructor

UserEmail({
  1. String? email,
  2. bool? verified,
  3. bool? primary,
})

Implementation

UserEmail({
  this.email,
  this.verified,
  this.primary,
});