Email constructor

Email(
  1. String address, {
  2. EmailLabel label = EmailLabel.home,
  3. String customLabel = '',
  4. bool isPrimary = false,
})

Implementation

Email(
  this.address, {
  this.label = EmailLabel.home,
  this.customLabel = '',
  this.isPrimary = false,
});