EmergencyAddress constructor

EmergencyAddress({
  1. String? id,
  2. required String sid,
  3. required String userId,
  4. required String displayName,
  5. required String customerName,
  6. required String address1,
  7. required String city,
  8. required String region,
  9. required String postalCode,
  10. required EmergencyAddressPhoneCountryEnum phoneCountry,
  11. required String accountSid,
  12. required DateTime createdAt,
  13. required DateTime updatedAt,
})

Returns a new EmergencyAddress instance.

Implementation

EmergencyAddress({
  this.id,
  required this.sid,
  required this.userId,
  required this.displayName,
  required this.customerName,
  required this.address1,
  required this.city,
  required this.region,
  required this.postalCode,
  required this.phoneCountry,
  required this.accountSid,
  required this.createdAt,
  required this.updatedAt,
});