post static method

Future<Result> post(
  1. String endpoint, [
  2. String? body
])

Implementation

static Future<Result> post(String endpoint, [String? body]) {
  String url = 'https://' + Authing.sHost + endpoint;
  return request("post", url, body);
}