CurrencyAmount constructor

CurrencyAmount({
  1. String? currency,
  2. String? value,
  3. String? issuer,
})

Implementation

factory CurrencyAmount({
  $core.String? currency,
  $core.String? value,
  $core.String? issuer,
}) {
  final _result = create();
  if (currency != null) {
    _result.currency = currency;
  }
  if (value != null) {
    _result.value = value;
  }
  if (issuer != null) {
    _result.issuer = issuer;
  }
  return _result;
}