IntentData constructor

IntentData({
  1. AmountData? amount,
  2. String? secret,
  3. String? expirationDate,
  4. bool? isLive,
  5. String? id,
  6. IntentStatus? status,
  7. List<FeeItem>? fees,
  8. String? totalDiscount,
  9. String? subtotalAmount,
})

Implementation

IntentData({
  this.amount,
  this.secret,
  this.expirationDate,
  this.isLive,
  this.id,
  this.status,
  this.fees,
  this.totalDiscount,
  this.subtotalAmount,
});