tsplPrintImage method
Sends a base64-encoded image to the TSPL printer.
Implementation
@override
Future<void> tsplPrintImage(String base64Encoded, int width) async {
await _channel.invokeMethod('tspl_printImage', {
'base64': base64Encoded,
'width': width,
});
}