deleteDocumentsByIds method

Future<List<DocIdentifier>> deleteDocumentsByIds(
  1. String sdkId,
  2. List<IdWithMandatoryRev> entityIds
)

Implementation

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