getDocument method

Future<EncryptedDocument?> getDocument(
  1. String sdkId,
  2. String entityId
)

Implementation

Future<EncryptedDocument?> getDocument(String sdkId, String entityId) async {
	final res = await _methodChannel.invokeMethod<String>(
		'DocumentApi.encrypted.getDocument',
		{
			"sdkId": sdkId,
			"entityId": jsonEncode(entityId),
		}
	).catchError(convertPlatformException);
	if (res == null) throw AssertionError("received null result from platform method getDocument");
	final parsedResJson = jsonDecode(res);
	return parsedResJson == null ? null : EncryptedDocument.fromJSON(parsedResJson);
}