getMethods static method

Future getMethods(
  1. String url,
  2. String token,
  3. String orgId,
  4. String schemeId,
)

Implementation

static Future<dynamic> getMethods(
    String url, String token, String orgId, String schemeId) async {
  var response = await client.get(
    Uri.parse(url),
    headers: <String, String>{
      'Content-Type': 'application/json; charset=UTF-8',
      'Authorization': token,
      // 'X-Org-Id': orgId,
      // 'X-Client-Id': schemeId
    },
  );
  return response;
}