destroy method

void destroy({
  1. bool notify = true,
})

Implementation

void destroy({bool notify = true}) {
  //skpark
  mouseCursorList.clear();
  if (notify) {
    notifyListeners();
  }
  //mouseTracerHolder?.dispose();
}