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,
})

Implementation

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