removeOnActionListener<T extends Cube> method

void removeOnActionListener<T extends Cube>(
  1. OnActionChanged<T, CubeAction>? listener
)

Remove OnActionListener

Implementation

void removeOnActionListener<T extends Cube>(
  OnActionChanged<T, CubeAction>? listener,
) {
  _onActionListeners.remove(listener);
}