FormattedInputData class

Internal data structure for formatted input parts.

FormattedInputData holds the state and configuration data needed to render and manage an individual input part within a formatted input.

Constructors

FormattedInputData({required int partIndex, required String? initialValue, required bool enabled, required FormattedInputController? controller, required FocusNode? focusNode, required List<FocusNode> focusNodes})
Creates a FormattedInputData.

Properties

controller FormattedInputController?
The controller managing the overall formatted input.
final
enabled bool
Whether this part is enabled for editing.
final
focusNode FocusNode?
The focus node for this specific part.
final
focusNodes List<FocusNode>
All focus nodes in the formatted input.
final
hashCode int
The hash code for this object.
no setteroverride
initialValue String?
The initial value for this part.
final
partIndex int
The index of this part in the formatted input.
final
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.
override