IntentDetails constructor

IntentDetails({
  1. String? selectedMethod,
  2. IntentData? intent,
  3. double? walletBalance,
  4. TransactionData? transaction,
  5. RedirectData? redirect,
  6. IntentState? state,
})

Implementation

IntentDetails({
  this.selectedMethod,
  this.intent,
  this.walletBalance,
  this.transaction,
  this.redirect,
  this.state,
});