cleanAll method

void cleanAll()

Implementation

void cleanAll() {
  if(_printers.isEmpty) return;
  _printers.removeWhere((element) => !element.isConnected);
}