getAttachmentText method

Future<Uint8List> getAttachmentText(
  1. String documentTemplateId,
  2. String attachmentId
)

Implementation

Future<Uint8List> getAttachmentText(String documentTemplateId, String attachmentId) async {
	return await CardinalSdkPlatformInterface.instance.apis.documentTemplate.getAttachmentText(
		_sdkId,
		documentTemplateId,
		attachmentId,
	);
}