stopDecode method
Implementation
@override
Future<String?> stopDecode() async {
if (!Platform.isAndroid) {
throw Exception('Available only for Android');
}
try {
final result = await methodChannel.invokeMethod<String>('stopDecode');
return result;
} catch (e) {
throw Exception('[MethodChannelError] ${e.toString()}');
}
}