editorPreviewMode property

bool get editorPreviewMode

Implementation

static bool get editorPreviewMode {
  _editorPreviewMode ??=
      const String.fromEnvironment('EDITOR_PREVIEW_MODE', defaultValue: 'false') == 'true';
  return _editorPreviewMode!;
}
set editorPreviewMode (bool value)

Implementation

static set editorPreviewMode(bool value) {
  _editorPreviewMode = value;
}