NotifierBuilder<T extends Listenable> class

πŸ‘·πŸ½ A Builder for any Listenable notifier/controller

Inheritance

Constructors

NotifierBuilder({required T notifier(), required Widget builder(BuildContext context, Widget? child, T notifier), Key? key, Widget? child})
Constructs a NotifierBuilder
const

Properties

builder β†’ Widget Function(BuildContext context, Widget? child, T notifier)
πŸ—οΈ The Builder calls this when it needs to build the widget tree. You can access the notifier and its state here
final
child β†’ Widget?
πŸ‘ΆπŸ½ This is entirely optional. You can use this prebuilt Widget in the builder to improve performance, but you don't need to
final
hashCode β†’ int
The hash code for this object.
no setterinherited
key β†’ Key?
Controls how one widget replaces another widget in the tree.
finalinherited
notifier β†’ T Function()
πŸ””The Builder calls this when it needs a new notifier. That will only happen once
final
runtimeType β†’ Type
A representation of the runtime type of the object.
no setterinherited

Methods

createElement() β†’ StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() β†’ State<NotifierBuilder<Listenable>>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() β†’ List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) β†’ void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) β†’ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) β†’ DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) β†’ String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) β†’ String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) β†’ String
Returns a one-line detailed description of the object.
inherited
toStringShort() β†’ String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) β†’ bool
The equality operator.
inherited