execute method

Future<void> execute(
  1. A argument
)

Executes the action with the specified argument.

Implementation

Future<void> execute(A argument) async {
  await _execute(() => _action(argument));
}