notFound function
Create a 404 Not Found response
Implementation
Response notFound([String? message]) {
return textResponse(
message ?? 'Not Found',
status: 404,
);
}
Create a 404 Not Found response
Response notFound([String? message]) {
return textResponse(
message ?? 'Not Found',
status: 404,
);
}