TotalSupplyResponse constructor

TotalSupplyResponse({
  1. ICPTs? totalSupply,
})

Implementation

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