getProcessInfo method
Implementation
Future<String> getProcessInfo(String sdkId) async {
final res = await _methodChannel.invokeMethod<String>(
'SystemApi.getProcessInfo',
{
"sdkId": sdkId,
}
);
if (res == null) throw AssertionError("received null result from platform method getProcessInfo");
final parsedResJson = jsonDecode(res);
return (parsedResJson as String);
}