printImgTSPL method

  1. @override
Future<String?> printImgTSPL(
  1. String address,
  2. String encode,
  3. int width,
  4. int widthBmp,
  5. int height,
  6. int m,
  7. int n,
  8. int x,
  9. int y,
)
override

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;
}