getDocumentTemplateAttachment method

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

Implementation

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