AccountCurrency constructor
Implementation
factory AccountCurrency({
$core.String? operator,
$core.String? currency,
$core.List<$core.int>? accountId,
$fixnum.Int64? amount,
}) {
final $result = create();
if (operator != null) {
$result.operator = operator;
}
if (currency != null) {
$result.currency = currency;
}
if (accountId != null) {
$result.accountId = accountId;
}
if (amount != null) {
$result.amount = amount;
}
return $result;
}