Dart DocumentationpuremvcSimpleCommand

SimpleCommand Class

A base ICommand implementation for executing a block of business logic.

Your subclass should override the execute method where your business logic will handle the INotification.

See ICommand, IController, INotification, MacroCommand, INotifier

Extends

Notifier > SimpleCommand

Implements

ICommand

Methods

Code void execute(INotification note) #

Respond to the INotification that triggered this SimpleCommand.

Perform business logic e.g., complex validation, processing, model changes.

void execute( INotification note ){ }