TokenInfo constructor

TokenInfo({
  1. required int chainId,
  2. required String address,
  3. required String name,
  4. required int decimals,
  5. required String symbol,
  6. String? logoURI,
  7. List<String> tags = const <String>[],
  8. TokenExtensions? extensions,
})

Implementation

TokenInfo({
  required this.chainId,
  required this.address,
  required this.name,
  required this.decimals,
  required this.symbol,
  this.logoURI,
  this.tags = const <String>[],
  this.extensions,
});