Input$FullAddressInput constructor
Input$FullAddressInput({
- Input$FullAddressOwnerInput? owner,
- String? address,
- String? postCode,
- String? city,
- String? country,
- String? state,
- Input$LonLatInput? location,
Implementation
factory Input$FullAddressInput({
Input$FullAddressOwnerInput? owner,
String? address,
String? postCode,
String? city,
String? country,
String? state,
Input$LonLatInput? location,
}) =>
Input$FullAddressInput._({
if (owner != null) r'owner': owner,
if (address != null) r'address': address,
if (postCode != null) r'postCode': postCode,
if (city != null) r'city': city,
if (country != null) r'country': country,
if (state != null) r'state': state,
if (location != null) r'location': location,
});