ContactData constructor

ContactData({
  1. String? contactArn,
  2. String? displayName,
  3. String? firstName,
  4. String? lastName,
  5. String? phoneNumber,
  6. List<PhoneNumber>? phoneNumbers,
  7. List<SipAddress>? sipAddresses,
})

Implementation

ContactData({
  this.contactArn,
  this.displayName,
  this.firstName,
  this.lastName,
  this.phoneNumber,
  this.phoneNumbers,
  this.sipAddresses,
});