run method
- String actionName,
- dynamic actionValue
Runs an action actionName
with the given value actionValue
Implementation
Future<String?> run(String actionName, dynamic actionValue) async {
return await _module.channel.invokeMethod('actions#run', [actionName, actionValue]);
}