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
// ignore: close_sinks
final BehaviorSubject<dynamic> customState = BehaviorSubject<dynamic>();