Input$BankDetailsHolderInput constructor

Input$BankDetailsHolderInput({
  1. String? name,
  2. Enum$BankDetailsHolderTypeEnum? type,
  3. Input$FullAddressInput? address,
})

Implementation

factory Input$BankDetailsHolderInput({
  String? name,
  Enum$BankDetailsHolderTypeEnum? type,
  Input$FullAddressInput? address,
}) =>
    Input$BankDetailsHolderInput._({
      if (name != null) r'name': name,
      if (type != null) r'type': type,
      if (address != null) r'address': address,
    });