run method

  1. @override
R run(
  1. CommandContext<State, System> context,
  2. System system
)
override

Performs the command on the given system.

Implementation

@override
R run(CommandContext<State, System> context, System system) {
  return _run(system, context.currentValue as T);
}