SignatureDrawType enum
Defines the different types of drawing styles for a signature path.
Values
- line → const SignatureDrawType
-
Draws the signature as a simple line with a constant stroke width. This is the most basic and performant drawing style.
- arc → const SignatureDrawType
-
Draws the signature as a series of small arcs. This style can produce a visually appealing result but might have a higher performance cost due to the large number of individual arcs drawn.
- shape → const SignatureDrawType
-
Draws the signature by creating a closed shape for each segment of the line and filling it. This method generally provides a good balance between visual quality and performance, resulting in a smooth, filled signature appearance.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
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
Constants
-
values
→ const List<
SignatureDrawType> - A constant List of the values in this enum, in order of their declaration.