execute method
Implementation
@override
Future<String> execute(String action, {double? timeout}) async {
Map<String, dynamic> opts = {
'action': action,
};
if (timeout != null) {
opts['timeout'] = timeout;
}
return await methodChannel.invokeMethod('execute', opts);
}