QuerySupplyOfResponse constructor

QuerySupplyOfResponse({
  1. Coin? amount,
})

Implementation

factory QuerySupplyOfResponse({
  $2.Coin? amount,
}) {
  final _result = create();
  if (amount != null) {
    _result.amount = amount;
  }
  return _result;
}