TokenIssueOrder constructor
TokenIssueOrder({})
Implementation
factory TokenIssueOrder({
$core.List<$core.int>? from,
$core.String? name,
$core.String? symbol,
$fixnum.Int64? totalSupply,
$core.bool? mintable,
}) {
final result = create();
if (from != null) result.from = from;
if (name != null) result.name = name;
if (symbol != null) result.symbol = symbol;
if (totalSupply != null) result.totalSupply = totalSupply;
if (mintable != null) result.mintable = mintable;
return result;
}