printImgTSPL method
Implementation
@override
Future<String?> printImgTSPL(
String address,
String encode,
int width,
int widthBmp,
int height,
int m,
int n,
int x,
int y,
) async {
final version = await methodChannel
.invokeMethod<String>('printImgTSPL', <String, dynamic>{
'address': address,
'encode': encode,
'width': width,
'widthBmp': widthBmp,
'height': height,
'm': m,
'n': n,
'x': x,
'y': y,
});
return version;
}