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