Phone constructor

Phone(
  1. String number,
  2. {String normalizedNumber: '',
  3. PhoneLabel label: PhoneLabel.mobile,
  4. String customLabel: '',
  5. bool isPrimary: false}
)

Implementation

Phone(this.number,
    {this.normalizedNumber = '',
    this.label = PhoneLabel.mobile,
    this.customLabel = '',
    this.isPrimary = false});