clearError method

void clearError()

Sends a signal that the error has been cleared (e.g. successful compile).

Implementation

void clearError() {
  _broadcast({
    'type': 'clear_error',
    'timestamp': DateTime.now().millisecondsSinceEpoch,
  });
}