setPrintSize method
Implementation
@override
Future<String?> setPrintSize(PrintSizeImin printSizeImin) async {
try {
return await methodChannel.invokeMethod<String>('setPrintSize', {'printSize': printSizeImin.value});
} on MissingPluginException catch (_) {
throw MissingPluginException('No method found for setPrintSize() on channel');
}
}