get static method

Future<({int code, String data, bool success})> get(
  1. String url
)

Implementation

static Future<({bool success, int code, String data})> get(String url) {
  return _send(url: url);
}