undo method

void undo()

Implementation

void undo() {
  if (_paintHistory.isNotEmpty) {
    setState(_paintHistory.removeLast);
  }
}