clear method

dynamic clear()

Implementation

clear(){
  board    = [];
  inputs   = [];
  isFull   = false;
  isEmpty  = true;
  value    = "";
  _buildBoard();
  _fillList();
  notifyListeners();
}