writeGraphicBase64 method

  1. @override
Future writeGraphicBase64(
  1. String aBase64Image,
  2. int aRotation,
  3. int aXOffset,
  4. int aWidth,
  5. int aHeight,
)
override

Implementation

@override
Future writeGraphicBase64(String aBase64Image, int aRotation, int aXOffset, int aWidth, int aHeight) async {
  return await methodChannel.invokeMethod('WriteGraphicBase64', {
    "aBase64Image": aBase64Image,
    "aRotation": aRotation,
    "aXOffset": aXOffset,
    "aWidth": aWidth,
    "aHeight": aHeight,
  });
}