Helper method for those used to res.json()
FutureOr<dynamic> json(Object? json) async { headers.contentType = ContentType.json; write(jsonEncode(json)); return await close(); }