TokenList constructor

TokenList({
  1. required String name,
  2. required String logoURI,
  3. dynamic tags,
  4. required String timestamp,
  5. required List<TokenInfo> tokens,
})

Implementation

TokenList({
  required this.name,
  required this.logoURI,
  this.tags,
  required this.timestamp,
  required this.tokens,
});