execute method
Executes the action with the specified argument.
Implementation
Future<void> execute(A argument) async {
await _execute(() => _action(argument));
}
Executes the action with the specified argument.
Future<void> execute(A argument) async {
await _execute(() => _action(argument));
}