json method

Future<Map<String, dynamic>> json()

Implementation

Future<Map<String, dynamic>> json() async {
  final content = await utf8.decodeStream(_httpRequest);
  return jsonDecode(content);
}