EmergencyAddress constructor
EmergencyAddress({
- String? id,
- required String sid,
- required String userId,
- required String displayName,
- required String customerName,
- required String address1,
- required String city,
- required String region,
- required String postalCode,
- required EmergencyAddressPhoneCountryEnum phoneCountry,
- required String accountSid,
- required DateTime createdAt,
- 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,
});