PurchasesBloc class
- Inheritance
-
- Object
- ListenableBloc<
PurchasesEvent, PurchasesState> - PurchasesBloc
Constructors
- PurchasesBloc({PurchaseService? purchaseServices, PurchasesBlocConfig? purchasesBlocConfig, })
Properties
- awaitingPurchasesCompleted → bool
-
no setter
- awaitingRestorePurchasesNotification → bool
-
no setter
- awaitingTransactionsVerification → bool
-
no setter
- blocConfig → PurchasesBlocConfig
-
final
-
closed$
↔ Stream<
void> -
getter/setter pairinherited
- customLogOutput → String Function(PurchasesEvent event)?
-
finalinherited
- globalConfig ↔ InAppPurchasesConfig
-
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- isBusy → bool
-
no setter
- isClosed → bool
-
Whether the bloc is closed.
no setterinherited
- logEvents → bool
-
finalinherited
- logFilter → bool Function(PurchasesEvent event)?
-
finalinherited
- logger → Logger?
-
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- state → PurchasesState
-
The current state.
no setterinherited
-
stream
→ Stream<
PurchasesState> -
The current stream of states.
no setterinherited
Methods
-
add(
PurchasesEvent event) → void -
Notifies the
Bloc
of a newevent
which triggers all correspondingEventHandler
instances.inherited -
addError(
Object error, [StackTrace? stackTrace]) → void -
Reports an
error
which triggersonError
with an optional StackTrace.inherited -
changeSubscription(
ProductItem item) → dynamic -
close(
) → Future< void> -
Closes the
event
andstate
Streams
. This method should be called when aBloc
is no longer needed. Once close is called,events
that are added will not be processed. In addition, if close is called whileevents
are still being processed, theBloc
will finish processing the pendingevents
.override -
emit(
PurchasesState state) → void -
emit
is only for internal use and should never be called directly outside of tests. TheEmitter
instance provided to eachEventHandler
should be used instead.inherited -
events(
) → Stream< PurchasesEvent> -
inherited
-
initialize(
) → dynamic -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
on<
E extends Event> (EventHandler< E, PurchasesState> handler, {EventTransformer<E> ? transformer}) → void -
Register event handler for an event of type
E
. There should only ever be one event handler per event typeE
.inherited -
onChange(
Change< PurchasesState> change) → void -
Called whenever a
change
occurs with the givenchange
. Achange
occurs when a newstate
is emitted.onChange
is called before thestate
of thecubit
is updated.onChange
is a great spot to add logging/analytics for a specificcubit
.inherited -
onError(
Object error, StackTrace stackTrace) → void -
Called whenever an
error
occurs and notifiesBlocObserver.onError
.inherited -
onEvent(
PurchasesEvent event) → void -
Called whenever an
event
is added to theBloc
. A great spot to add logging/analytics at the individualBloc
level.inherited -
onTransition(
Transition< PurchasesEvent, PurchasesState> transition) → void -
Called whenever a
transition
occurs with the giventransition
. Atransition
occurs when a newevent
is added and a new state isemitted
from a correspondingEventHandler
.inherited -
purchase(
ProductItem item) → dynamic -
resetState(
) → dynamic -
restorePurchases(
) → dynamic -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- verifiedPurchasesKey ↔ String
-
getter/setter pair