$ChangeNotifier$bridge class
Properties
-
$reified
→ ChangeNotifier
-
Fully reify the underlying value so it can be used in a Dart context.
For example, recursively transform collections into their underlying
$values.
no setterinherited
-
$runtime
→ Runtime
-
no setterinherited
-
$value
→ $Bridge
-
The backing Dart value of this
$Value
no setterinherited
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
hasListeners
→ bool
-
Whether any listeners are currently registered.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
$_get(String prop)
→ dynamic
-
inherited
-
$_invoke(String method, List<$Value?> args)
→ dynamic
-
inherited
-
$_set(String prop, $Value value)
→ void
-
inherited
-
$bridgeGet(String identifier)
→ $Value?
-
-
$bridgeSet(String identifier, $Value value)
→ void
-
-
$getProperty(Runtime runtime, String identifier)
→ $Value?
-
Get a property by
identifier
on this instance
inherited
-
$getRuntimeType(Runtime runtime)
→ int
-
inherited
-
$setProperty(Runtime runtime, String identifier, $Value value)
→ void
-
Set a property by
identifier
on this instance to value
inherited
-
addListener(VoidCallback listener)
→ void
-
Register a closure to be called when the object changes.
override
-
dispose()
→ void
-
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
override
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyListeners()
→ void
-
Call all the registered listeners.
override
-
removeListener(VoidCallback listener)
→ void
-
Remove a previously registered closure from the list of closures that are
notified when the object changes.
override
-
toString()
→ String
-
A string representation of this object.
inherited
Static Methods
-
$new(Runtime runtime, $Value? target, List<$Value?> args)
→ $Value?
-