getMethods static method
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;
}