ProviderNode class abstract
Base class for all semantic IR nodes emitted by the scanner adapters.
Each node represents one detectable construct in a Flutter source file — a notifier class, a widget, a provider declaration, or a provider access. Nodes carry source location (filePath, offset, length) so that downstream transformers can produce precise TextEdits.
Constructors
- ProviderNode({required String filePath, required int offset, required int length})
Properties
- filePath → String
-
Absolute path to the source file that contains this node.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- length → int
-
Byte length of the node within the source file.
final
- offset → int
-
Byte offset of the node's start within the source file.
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.
inherited