PaymentSheetEvent constructor

const PaymentSheetEvent({
  1. required String flowId,
  2. required int sequence,
  3. required PaymentSheetEventType type,
  4. required DateTime timestamp,
  5. String? errorType,
})

Implementation

const PaymentSheetEvent({
  required this.flowId,
  required this.sequence,
  required this.type,
  required this.timestamp,
  this.errorType,
});