setPrintSize method

  1. @override
Future<String?> setPrintSize(
  1. PrintSizeImin printSizeImin
)
override

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