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