CreateToken constructor

CreateToken({
  1. List<int>? address,
  2. List<int>? accountId,
  3. Int64? value,
})

Implementation

factory CreateToken({
  $core.List<$core.int>? address,
  $core.List<$core.int>? accountId,
  $fixnum.Int64? value,
}) {
  final $result = create();
  if (address != null) {
    $result.address = address;
  }
  if (accountId != null) {
    $result.accountId = accountId;
  }
  if (value != null) {
    $result.value = value;
  }
  return $result;
}