AccountCurrency constructor

AccountCurrency({
  1. String? operator,
  2. String? currency,
  3. List<int>? accountId,
  4. Int64? amount,
})

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