sendAction method

  1. @protected
void sendAction(
  1. CubeAction action
)

Method to send anything to view

Implementation

@protected
void sendAction(CubeAction action) {
  if (_onActionListeners.isNotEmpty) {
    _onActionListeners.last(this, action);
  }
}