TokenIssueOrder constructor

TokenIssueOrder({
  1. List<int>? from,
  2. String? name,
  3. String? symbol,
  4. Int64? totalSupply,
  5. bool? mintable,
})

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;
}