Input$FullAddressOwnerInput constructor

Input$FullAddressOwnerInput({
  1. String? name,
  2. Input$FullAddressOwnerPhoneInput? phone,
})

Implementation

factory Input$FullAddressOwnerInput({
  String? name,
  Input$FullAddressOwnerPhoneInput? phone,
}) =>
    Input$FullAddressOwnerInput._({
      if (name != null) r'name': name,
      if (phone != null) r'phone': phone,
    });