Transaction constructor

Transaction({
  1. CaptureStatus? status,
  2. String? id,
  3. AmountWithBreakdown? amountWithBreakdown,
  4. Name? payerName,
  5. String? payerEmail,
  6. String? time,
})

Implementation

Transaction(
    {this.status,
    this.id,
    this.amountWithBreakdown,
    this.payerName,
    this.payerEmail,
    this.time});