PaymentSheetTelemetryEvent constructor

const PaymentSheetTelemetryEvent({
  1. required String flowId,
  2. required int sequence,
  3. required String name,
  4. required DateTime timestamp,
  5. String? operation,
  6. int? httpStatusCode,
  7. String? requestId,
  8. String? errorType,
})

Implementation

const PaymentSheetTelemetryEvent({
  required this.flowId,
  required this.sequence,
  required this.name,
  required this.timestamp,
  this.operation,
  this.httpStatusCode,
  this.requestId,
  this.errorType,
});