FlashException constructor

FlashException({
  1. String? title,
  2. String? message,
  3. ExceptionType type = ExceptionType.none,
  4. int statusCode = 200,
})

Implementation

FlashException({
  this.title,
  this.message,
  this.type = ExceptionType.none,
  this.statusCode = 200,
});