execute method

Future<void> execute(
  1. T arg
)

Execute the command

Implementation

Future<void> execute(T arg) async {
  return _run(() => _action(arg));
}