Contact constructor

Contact({
  1. String? fullName,
  2. List<String>? phoneNumbers,
  3. String? selectedPhoneNumber,
})

Implementation

Contact({
  this.fullName,
  this.phoneNumbers,
  this.selectedPhoneNumber,
});