getHierarchy method
Implementation
Future<List<String>> getHierarchy(String sdkId, String id) async {
final res = await _methodChannel.invokeMethod<String>(
'GroupApi.getHierarchy',
{
"sdkId": sdkId,
"id": jsonEncode(id),
}
);
if (res == null) throw AssertionError("received null result from platform method getHierarchy");
final parsedResJson = jsonDecode(res);
return (parsedResJson as List<dynamic>).map((x1) => (x1 as String) ).toList();
}