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