json method

Future json()

Implementation

Future<dynamic> json() async {
  final text = await this.text();
  return c.json.decode(text);
}