json method

HttpResponse json(
  1. Object? data, {
  2. int statusCode = HttpStatus.ok,
})

Implementation

HttpResponse json(Object? data, {int statusCode = HttpStatus.ok}) {
  response.statusCode = statusCode;
  response.headers.contentType = ContentType.json;
  response.write(data); // you can wrap with jsonEncode if needed
  return response;
}