EventFluxException constructor

EventFluxException({
  1. String? message,
  2. int? statusCode,
  3. String? reasonPhrase,
  4. Object? originalError,
  5. StackTrace? stackTrace,
})

Implementation

EventFluxException({
  this.message,
  this.statusCode,
  this.reasonPhrase,
  this.originalError,
  this.stackTrace,
});