StrongCatch constructor

const StrongCatch({
  1. String? title,
  2. String? message,
  3. bool withCause = true,
})

Implementation

const StrongCatch({super.title, super.message, super.withCause = true})
    : super(level: CatchLevel.strong);