TokenInfo constructor

const TokenInfo({
  1. required int decimals,
  2. required num maxSupply,
  3. required String symbol,
  4. required String name,
  5. required String contractAddress,
})

Implementation

const TokenInfo({
  required this.decimals,
  required this.maxSupply,
  required this.symbol,
  required this.name,
  required this.contractAddress,
});