size method
Implementation
Future<void> size({required width, required height, int copies = 1}) async {
Map<String, dynamic> params = {
"width": width,
"height": height,
"copies": copies
};
await methodChannel.invokeMethod<void>('size', params);
}