tsplPrintPDFBase64 method
Sends a base64-encoded PDF to be printed using TSPL.
Implementation
@override
Future<void> tsplPrintPDFBase64(
String base64Encoded,
LabelSize labelSize,
) async {
await _channel.invokeMethod('tspl_printPDFBase64', {
'base64': base64Encoded,
'label': labelSize.value,
});
}