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