RetryCatch constructor

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

Implementation

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