isReady method

Future<String> isReady(
  1. String sdkId
)

Implementation

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