BankAccountRef constructor

BankAccountRef({
  1. List<int>? accountId,
  2. BankAccountRef_BankAccountType? accountType,
})

Implementation

factory BankAccountRef({
  $core.List<$core.int>? accountId,
  BankAccountRef_BankAccountType? accountType,
}) {
  final _result = create();
  if (accountId != null) {
    _result.accountId = accountId;
  }
  if (accountType != null) {
    _result.accountType = accountType;
  }
  return _result;
}