getCurrentDataOwnerHierarchyIds method

Future<List<String>> getCurrentDataOwnerHierarchyIds(
  1. String sdkId
)

Implementation

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