ErrorResponse.notFound constructor

ErrorResponse.notFound({
  1. String message = "Not found",
})

Implementation

factory ErrorResponse.notFound({String message = "Not found"}) {
  return ErrorResponse(status: ResponseStatus.notFound, message: message);
}