getIndexingInfo method

Future<IndexingInfo> getIndexingInfo(
  1. String sdkId
)

Implementation

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