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;
}