RemoteDevToolsObserver class
Methods
-
connect()
→ Future<void>
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a non-existent method or property is accessed.
inherited
-
onChange(Cubit cubit, Change change)
→ void
-
Called whenever a
Change
occurs in any cubit
A change
occurs when a new state is emitted.
onChange is called before a cubit's state has been updated.
@mustCallSuper@protectedinherited
-
onClose(Cubit cubit)
→ void
-
Called whenever a
Cubit
is closed.
onClose is called just before the Cubit
is closed
and indicates that the particular instance will no longer
emit new states.
-
onCreate(Cubit cubit)
→ void
-
Called whenever a
Cubit
is instantiated.
In many cases, a cubit may be lazily instantiated and
onCreate can be used to observe exactly when the cubit
instance is created.
-
onError(Cubit cubit, Object error, StackTrace stackTrace)
→ void
-
Called whenever an
error
is thrown in any Bloc
or Cubit
.
The stackTrace
argument may be null
if the state stream received
an error without a stackTrace
.
@mustCallSuper@protectedinherited
-
onEvent(Bloc bloc, Object event)
→ void
-
Called whenever an
event
is added
to any bloc
with the given bloc
and event
.
@mustCallSuper@protectedinherited
-
onTransition(Bloc bloc, Transition transition)
→ void
-
Called whenever a transition occurs in any
bloc
with the given bloc
and transition
.
A transition
occurs when a new event
is added
and mapEventToState
executed.
onTransition is called before a bloc
's state has been updated.
-
toString()
→ String
-
A string representation of this object.
inherited