Email constructor

Email({
  1. String? data,
  2. bool? primary,
  3. EmailType? type,
})

Implementation

Email({
  this.data,
  this.primary,
  this.type,
});