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