AllureGlobalError constructor

const AllureGlobalError({
  1. required int timestamp,
  2. String? message,
  3. String? trace,
  4. bool? known,
  5. bool? muted,
  6. bool? flaky,
  7. String? actual,
  8. String? expected,
})

Creates a global error record.

Implementation

const AllureGlobalError({
  required this.timestamp,
  super.message,
  super.trace,
  super.known,
  super.muted,
  super.flaky,
  super.actual,
  super.expected,
});