partialCut method
Implementation
@override
Future<String> partialCut() async {
try {
return await methodChannel.invokeMethod<String>('partialCut') ??
'invalid';
} on MissingPluginException catch (_) {
throw MissingPluginException(
'No method found for partialCut() on channel');
}
}