QueryTaxRateResponse constructor

QueryTaxRateResponse({
  1. String? taxRate,
})

Implementation

factory QueryTaxRateResponse({
  $core.String? taxRate,
}) {
  final _result = create();
  if (taxRate != null) {
    _result.taxRate = taxRate;
  }
  return _result;
}