post static method

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

Implementation

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