writeGraphicBase64 method
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,
});
}