isOpenFailedError method

bool isOpenFailedError()
inherited

True if the exception is an open failed error

Implementation

bool isOpenFailedError() {
  if (_message != null) {
    return _message.contains('open_failed');
  }
  return false;
}