run method

Future<String?> run(
  1. String actionName,
  2. 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]);
}