TotalSupplyResponse constructor

TotalSupplyResponse({
  1. ICPTs? totalSupply,
})

Implementation

factory TotalSupplyResponse({
  ICPTs? totalSupply,
}) {
  final _result = create();
  if (totalSupply != null) {
    _result.totalSupply = totalSupply;
  }
  return _result;
}