Input$BankInput constructor

Input$BankInput({
  1. required String name,
  2. String? code,
  3. String? bic,
  4. Input$FullAddressInput? address,
})

Implementation

factory Input$BankInput({
  required String name,
  String? code,
  String? bic,
  Input$FullAddressInput? address,
  Input$BrowserLogoInput? logo,
}) =>
    Input$BankInput._({
      r'name': name,
      if (code != null) r'code': code,
      if (bic != null) r'bic': bic,
      if (address != null) r'address': address,
      if (logo != null) r'logo': logo,
    });