get method

Future<String> get ()

Implementation

Future<String> get() async {
  var response = await http.get(this.url);
  return response.body;
}