addOperation method

void addOperation(
  1. CellOperation<CellDataType> operation
)

Explicitly add a CellOperation. Useful if you want to subclass and create your own operations.

Implementation

void addOperation(CellOperation<CellDataType> operation) {
  _performedOperations.add(operation);
}