RxList<T> constructor
RxList<T> ([
- List<
T> ? list
Implementation
RxList([List<T>? list]) {
if (list != null) {
_list = list;
} else {
_list = [];
}
}
RxList([List<T>? list]) {
if (list != null) {
_list = list;
} else {
_list = [];
}
}