EmailAccount constructor

EmailAccount({
  1. String? email,
  2. String? name,
})

Implementation

EmailAccount({
  this.email,
  this.name,
});