update abstract method

void update()

Given the current state of the screen buffer, updates an external surface.

How this implemented might vary, but a typical control may look like:

@override
void update() {
  _clearScreen();
  _forEachCellUpdateScreen();
  _flushScreenBufferIfAny();
}

Implementation

void update();