TokenOut constructor

TokenOut({
  1. required String address,
  2. required int chainId,
  3. required int decimals,
  4. required String name,
  5. required String symbol,
  6. required String amount,
  7. required String maxTheoreticalAmount,
  8. required String recommendedAmount,
})

Implementation

TokenOut(
    {required this.address,
    required this.chainId,
    required this.decimals,
    required this.name,
    required this.symbol,
    required this.amount,
    required this.maxTheoreticalAmount,
    required this.recommendedAmount});