Input$FullAddressInput constructor

Input$FullAddressInput({
  1. Input$FullAddressOwnerInput? owner,
  2. String? address,
  3. String? postCode,
  4. String? city,
  5. String? country,
  6. String? state,
  7. 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,
    });