getRawMainAttachment method

Future<Uint8List> getRawMainAttachment(
  1. String sdkId,
  2. String documentId
)

Implementation

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