BlurEditorConfigs class

Configuration options for a blur editor.

BlurEditorConfigs allows you to define settings for a blur editor, including whether the editor is enabled and a list of blur generators.

Example usage:

BlurEditorConfigs(
  enabled: true,
  maxBlur: 5.0,
);

Constructors

BlurEditorConfigs({bool enabled = true, bool showLayers = true, double maxBlur = 5.0})
Creates an instance of BlurEditorConfigs with optional settings.
const

Properties

enabled bool
Indicates whether the blur editor is enabled.
final
hashCode int
The hash code for this object.
no setterinherited
maxBlur double
Maximum blur value.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
showLayers bool
Show also layers in the editor.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited