ok method
Implementation
Future<void> ok({
Object? body,
String? message,
ContentType? contentType,
}) async {
await status(
HttpStatus.ok,
body: body,
message: message,
contentType: contentType,
);
}
Future<void> ok({
Object? body,
String? message,
ContentType? contentType,
}) async {
await status(
HttpStatus.ok,
body: body,
message: message,
contentType: contentType,
);
}