RxxList<T> class
- Inheritance
- Mixed-in types
- Available extensions
Properties
- canUpdate → bool
-
no setterinherited
- first ↔ T
-
The first element.
getter/setter pairinherited
- firstOrNull → T?
-
Available on Iterable<
The first element of this iterator, orT> , provided by the IterableExtensions extensionnull
if the iterable is empty.no setter - firstRebuild ↔ bool
-
getter/setter pairinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
-
indexed
→ Iterable<
(int, T)> -
Available on Iterable<
Pairs of elements of the indices and elements of this iterable.T> , provided by the IterableExtensions extensionno setter - isEmpty → bool
-
Whether this collection has no elements.
no setterinherited
- isNotEmpty → bool
-
Whether this collection has at least one element.
no setterinherited
-
iterator
→ Iterator<
T> -
A new
Iterator
that allows iterating the elements of thisIterable
.no setterinherited - last ↔ T
-
The last element.
getter/setter pairinherited
- lastOrNull → T?
-
Available on Iterable<
The last element of this iterable, orT> , provided by the IterableExtensions extensionnull
if the iterable is empty.no setter - length ↔ int
-
The number of objects in this list.
getter/setter pairinherited
-
nonNulls
→ Iterable<
T> -
Available on Iterable<
The non-T?> , provided by the NullableIterableExtensions extensionnull
elements of this iterable.no setter -
obs
→ RxList<
E> -
Available on List<
E> , provided by the ListExtension extensionno setter -
obx
→ RxxList<
E> -
Available on List<
E> , provided by the RxxListExtension extensionno setter -
reversed
→ Iterable<
T> -
An Iterable of the objects in this list in reverse order.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- sentToStream ↔ bool
-
getter/setter pairinherited
- single → T
-
Checks that this iterable has only one element, and returns that element.
no setterinherited
- singleOrNull → T?
-
Available on Iterable<
The single element of this iterator, orT> , provided by the IterableExtensions extensionnull
.no setter -
state
↔ Rx<
RxStatus> -
getter/setter pairinherited
-
stream
→ Stream<
List< T> > -
no setterinherited
- string → String
-
Same as
toString()
but using a getter.no setterinherited -
subject
↔ GetStream<
List< T> > -
getter/setter pairinherited
-
toJS
→ JSArray<
T> -
Available on List<
Converts this List to a JSArray by either casting, unwrapping, or cloning the List.T> , provided by the ListToJSArray extensionno setter -
toJSProxyOrRef
→ JSArray<
T> -
Available on List<
Converts this List to a JSArray by either casting, unwrapping, or proxying the List.T> , provided by the ListToJSArray extensionno setter -
value
↔ List<
T> -
Returns the current value
getter/setter pairinherited
-
wait
→ Future<
List< T> > -
Available on Iterable<
Waits for futures in parallel.Future< , provided by the FutureIterable extensionT> >no setter
Methods
-
add(
T element) → void -
Adds
value
to the end of this list, extending the length by one.inherited -
addAll(
Iterable< T> iterable) → void -
Appends all objects of
iterable
to the end of this list.inherited -
addAllIf(
dynamic condition, Iterable< E> items) → void -
Available on List<
Adds Iterable<E> to List<E> only ifE> , provided by the ListExtension extensioncondition
is true. -
addIf(
dynamic condition, E item) → void -
Available on List<
AddE> , provided by the ListExtension extensionitem
to List -
addListener(
GetStream< List< rxGetx) → voidT> > -
This is an internal method.
Subscribe to changes on the inner stream.
inherited
-
addNonNull(
E item) → void -
Available on List<
AddE> , provided by the ListExtension extensionitem
to List<E> only ifitem
is not null. -
any(
bool test(T element)) → bool -
Checks whether any element of this iterable satisfies
test
.inherited -
asMap(
) → Map< int, T> -
An unmodifiable Map view of this list.
inherited
-
asNameMap(
) → Map< String, T> -
Available on Iterable<
Creates a map from the names of enum values to the values.T> , provided by the EnumByName extension -
assign(
E item) → void -
Available on List<
Replaces all existing items of this list withE> , provided by the ListExtension extensionitem
-
assignAll(
Iterable< E> items) → void -
Available on List<
Replaces all existing items of this list withE> , provided by the ListExtension extensionitems
-
bindStream(
Stream< List< stream) → voidT> > -
Binds an existing
Stream<T>
to this Rxinherited -
byName(
String name) → T -
Available on Iterable<
Finds the enum value in this list with nameT> , provided by the EnumByName extensionname
. -
call(
[List< T> ? v]) → List<T> -
updates the value to
null
and adds it to the Stream. Even with null-safety coming, is still an important feature to support, ascall()
doesn't acceptnull
values. For instance,InputDecoration.errorText
has to be null to not show the "error state".inherited -
cast<
R> () → List< R> -
Returns a view of this list as a list of
R
instances.inherited -
clear(
) → void -
Removes all objects from this list; the length of the list becomes zero.
inherited
-
close(
) → void -
Closes the subscriptions for this Rx, releasing the resources.
inherited
-
contains(
Object? element) → bool -
Whether the collection contains an element equal to
element
.inherited -
elementAt(
int index) → T -
Returns the
index
th element.inherited -
elementAtOrNull(
int index) → T? -
Available on Iterable<
The element at positionT> , provided by the IterableExtensions extensionindex
of this iterable, ornull
. -
every(
bool test(T element)) → bool -
Checks whether every element of this iterable satisfies
test
.inherited -
expand<
T> (Iterable< T> f(T element)) → Iterable<T> -
Expands each element of this Iterable into zero or more elements.
inherited
-
fillRange(
int start, int end, [T? fill]) → void -
Overwrites a range of elements with
fillValue
.inherited -
firstWhere(
bool test(T element), {T orElse()?}) → T -
The first element that satisfies the given predicate
test
.inherited -
firstWhereOrNull(
bool test(T element)) → T? -
Available on List<
The first element satisfyingT> , provided by the FirstWhereExt extensiontest
, ornull
if there are none. -
firstWhereOrNull(
bool test(E)) → E? -
Available on Iterable<
E> , provided by the IterableExtension extension -
fold<
T> (T initialValue, T combine(T previousValue, T element)) → T -
Reduces a collection to a single value by iteratively combining each
element of the collection with an existing value
inherited
-
followedBy(
Iterable< T> other) → Iterable<T> -
Creates the lazy concatenation of this iterable and
other
.inherited -
forEach(
void action(T element)) → void -
Invokes
action
on each element of this iterable in iteration order.inherited -
getRange(
int start, int end) → Iterable< T> -
Creates an Iterable that iterates over a range of elements.
inherited
-
indexOf(
Object? element, [int start = 0]) → int -
The first index of
element
in this list.inherited -
indexWhere(
bool test(T element), [int start = 0]) → int -
The first index in the list that satisfies the provided
test
.inherited -
insert(
int index, T element) → void -
Inserts
element
at positionindex
in this list.inherited -
insertAll(
int index, Iterable< T> iterable) → void -
Inserts all objects of
iterable
at positionindex
in this list.inherited -
join(
[String separator = ""]) → String -
Converts each element to a String and concatenates the strings.
inherited
-
lastIndexOf(
Object? element, [int? start]) → int -
The last index of
element
in this list.inherited -
lastIndexWhere(
bool test(T element), [int? start]) → int -
The last index in the list that satisfies the provided
test
.inherited -
lastWhere(
bool test(T element), {T orElse()?}) → T -
The last element that satisfies the given predicate
test
.inherited -
listen(
void onData(List< T> ), {Function? onError, void onDone()?, bool? cancelOnError}) → StreamSubscription<List< T> > -
inherited
-
listenAndPump(
void onData(List< T> event), {Function? onError, void onDone()?, bool? cancelOnError}) → StreamSubscription<List< T> > -
Returns a StreamSubscription similar to listen, but with the
added benefit that it primes the stream with the current value, rather
than waiting for the next value. This should not be called in
onInit
or anywhere else during the build process.inherited -
map<
T> (T f(T element)) → Iterable< T> -
The current elements of this iterable modified by
toElement
.inherited -
mapMany<
TRes> (Iterable< TRes> ? selector(T item)) → Iterable<TRes> -
Available on Iterable<
T> , provided by the IterableExtensions extension -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pickAfterRoute(
String route) → Iterable< GetPage> -
Available on List<
GetPage> , provided by the PagesListExt extension -
pickAtRoute(
String route) → Iterable< GetPage> -
Available on List<
GetPage> , provided by the PagesListExt extension -
reduce(
T combine(T previousValue, T element)) → T -
Reduces a collection to a single value by iteratively combining elements
of the collection using the provided function.
inherited
-
refresh(
) → void -
Makes a direct update of value adding it to the Stream
useful when you make use of Rx for custom Types to referesh your UI.
override
-
remove(
Object? element) → bool -
Removes the first occurrence of
value
from this list.inherited -
removeAt(
int index) → T -
Removes the object at position
index
from this list.inherited -
removeLast(
) → T -
Removes and returns the last object in this list.
inherited
-
removeRange(
int start, int end) → void -
Removes a range of elements from the list.
inherited
-
removeWhere(
bool test(T element)) → void -
Removes all objects from this list that satisfy
test
.inherited -
replaceRange(
int start, int end, Iterable< T> newContents) → void -
Replaces a range of elements with the elements of
replacements
.inherited -
request(
) → Future< Map< Permission, PermissionStatus> > -
Available on List<
Requests the user for access to these permissions, if they haven't already been granted before.Permission> , provided by the PermissionListActions extension -
retainWhere(
bool test(T element)) → void -
Removes all objects from this list that fail to satisfy
test
.inherited -
setAll(
int index, Iterable< T> iterable) → void -
Overwrites elements with the objects of
iterable
.inherited -
setEmpty(
) → void -
override
-
setError(
{String? message}) → void -
override
-
setLoading(
) → void -
override
-
setLoadingMore(
) → void -
inherited
-
setRange(
int start, int end, Iterable< T> iterable, [int skipCount = 0]) → void -
Writes some elements of
iterable
into a range of this list.inherited -
setSuccess(
) → void -
override
-
shuffle(
[Random? random]) → void -
Shuffles the elements of this list randomly.
inherited
-
singleWhere(
bool test(T element), {T orElse()?}) → T -
The single element that satisfies
test
.inherited -
skip(
int count) → Iterable< T> -
Creates an Iterable that provides all but the first
count
elements.inherited -
skipWhile(
bool test(T element)) → Iterable< T> -
Creates an
Iterable
that skips leading elements whiletest
is satisfied.inherited -
sort(
[int compare(T a, T b)?]) → void -
Sorts this list according to the order specified by the
compare
function.inherited -
sublist(
int start, [int? end]) → List< T> -
Returns a new list containing the elements between
start
andend
.inherited -
take(
int count) → Iterable< T> -
Creates a lazy iterable of the
count
first elements of this iterable.inherited -
takeWhile(
bool test(T element)) → Iterable< T> -
Creates a lazy iterable of the leading elements satisfying
test
.inherited -
toJson(
) → dynamic -
Returns the json representation of
value
.inherited -
toList(
{bool growable = true}) → List< T> -
Creates a List containing the elements of this Iterable.
inherited
-
toSet(
) → Set< T> -
Creates a Set containing the same elements as this iterable.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
where(
bool test(T)) → Iterable< T> -
Creates a new lazy Iterable with all elements that satisfy the
predicate
test
.inherited -
whereType<
T> () → Iterable< T> -
Creates a new lazy Iterable with all elements that have type
T
.inherited
Operators
-
operator +(
Iterable< T> val) → RxList<T> -
Special override to push() element(s) in a reactive way
inside the List,
inherited
-
operator ==(
Object o) → bool -
This equality override works for _RxImpl instances and the internal
values.
inherited
-
operator [](
int index) → T -
The object at the given
index
in the list.inherited -
operator []=(
int index, T val) → void -
Sets the value at the given
index
in the list tovalue
.inherited