Token constructor

Token({
  1. String? address,
  2. String? genesis,
  3. String? name,
  4. String? id,
  5. int? supply,
  6. String? type,
  7. String? symbol,
  8. Map<String, dynamic>? tokenProperties,
  9. List<int>? aeip,
  10. List<Ownership>? ownerships,
})

Implementation

Token({
  this.address,
  this.genesis,
  this.name,
  this.id,
  this.supply,
  this.type,
  this.symbol,
  this.tokenProperties,
  this.aeip,
  this.ownerships,
});