TradeOptions constructor

TradeOptions({
  1. required Percent allowedSlippage,
  2. bool? feeOnTransfer,
  3. required String recipient,
  4. required double ttl,
})

Implementation

TradeOptions(
    {required this.allowedSlippage,
    this.feeOnTransfer,
    required this.recipient,
    required this.ttl});