get static method

Future<Result> get(
  1. String endpoint
)

Implementation

static Future<Result> get(String endpoint) {
  String url = 'https://' + Authing.sHost + endpoint;
  return request("get", url, null);
}