FailureDetails constructor

FailureDetails({
  1. required String message,
  2. required FailureType type,
  3. String? externalExecutionId,
})

Implementation

FailureDetails({
  required this.message,
  required this.type,
  this.externalExecutionId,
});