customState property

  1. @override
BehaviorSubject customState
final

A controller for broadcasting the current custom state to the app's UI. Example usage:

customState.add(MyCustomState(...));

Implementation

@override
final BehaviorSubject<dynamic> customState = BehaviorSubject<dynamic>();