state property

St? get state

The State of Screen ()

Implementation

St? get state {
  if (_state?.mounted == true) {
    return _state;
  }
  if (_state == null) {
    Exception("----------State not initialized----------").printError(info: 'plex_view_model.dart');
  } else if (_state != null && _state?.mounted == false) {
    Exception("----------State not not mounted----------").printError(info: 'plex_view_model.dart');
  }
  return null;
}