EmergencyAddressDto constructor

EmergencyAddressDto({
  1. required String id,
  2. required String address1,
  3. required EmergencyAddressDtoPhoneCountryEnum phoneCountry,
})

Returns a new EmergencyAddressDto instance.

Implementation

EmergencyAddressDto({
  required this.id,
  required this.address1,
  required this.phoneCountry,
});