ok method

Future<void> ok({
  1. Object? body,
  2. String? message,
  3. ContentType? contentType,
})

Implementation

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