BankAccountRef constructor
BankAccountRef({
- List<
int> ? accountId, - 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;
}