NotFound constructor

const NotFound({
  1. String? message,
  2. ErrorType errorType = ErrorType.notFound,
})

Implementation

const NotFound({
  String? message,
  ErrorType errorType = ErrorType.notFound,
}) : super(errorType, message: message);