Details constructor

Details({
  1. required String chain,
  2. required String tokenIn,
  3. required String tokenOut,
  4. required String amountIn,
  5. required String amountOut,
  6. required String type,
  7. Map? payload,
})

Implementation

Details(
    {required this.chain,
    required this.tokenIn,
    required this.tokenOut,
    required this.amountIn,
    required this.amountOut,
    required this.type,
    this.payload});