PaymentProcess constructor

const PaymentProcess({
  1. int? totalDuration,
  2. int? currentSessionAttempts,
  3. int? currentSessionFailedAttempts,
  4. int? last24HourAttempts,
  5. int? last24HourFailedAttempts,
})

Implementation

const PaymentProcess({
  this.totalDuration,
  this.currentSessionAttempts,
  this.currentSessionFailedAttempts,
  this.last24HourAttempts,
  this.last24HourFailedAttempts,
});