ComputeTaxResponse constructor

ComputeTaxResponse({
  1. Iterable<Coin>? taxAmount,
})

Implementation

factory ComputeTaxResponse({
  $core.Iterable<Coin>? taxAmount,
}) {
  final _result = create();
  if (taxAmount != null) {
    _result.taxAmount.addAll(taxAmount);
  }
  return _result;
}