rx/rx_types library
Rx Types - Reactive value types
Classes
-
Rx<
T> - Base Rx class that manages all the stream logic for any Type.
- RxBool
- RxBool for boolean values
- RxDouble
- RxDouble for double values
- RxInt
- RxInt for integer values
-
RxInterface<
T> - Base interface for reactive types
-
RxList<
T> - Reactive List that notifies listeners when modified
-
RxMap<
K, V> - A reactive Map that notifies listeners when modified
-
Rxn<
T> - Nullable Rx class
- RxnBool
- RxnBool for nullable boolean values
- RxnDouble
- RxnDouble for nullable double values
- RxnInt
- RxnInt for nullable integer values
-
RxnList<
T> - RxnList - Nullable Reactive List
- RxnString
- RxnString for nullable string values
- RxString
- RxString for string values
Extensions
- BoolExtension on bool
- DoubleExtension on double
- IntExtension on int
-
RxBoolExt
on Rx<
bool> -
RxnBoolExt
on Rx<
bool?> -
RxNumExt
on Rx<
num> - RxT on T
- RxTnew on Object
- New extension to avoid conflicts with dart 3 features
- StringExtension on String