CommentPageResponse class final
A page response of comments.
- Inheritance
-
- Object
- ListBase<
Comment> - UnmodifiableListView<
Comment> - PageResponse<
Comment> - CommentPageResponse
- Implemented types
-
- List<
E>
- List<
- Annotations
-
- @immutable
Constructors
- CommentPageResponse.empty()
-
Create an empty CommentPageResponse.
factory
- CommentPageResponse.fromXml(XmlDocument document)
-
Create a CommentPageResponse from a XML response.
factory
Properties
- count → int?
-
The total number of resources.
finalinherited
- first ↔ Comment
-
The first element.
getter/setter pairinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- isEmpty → bool
-
Whether this collection has no elements.
no setterinherited
- isNotEmpty → bool
-
Whether this collection has at least one element.
no setterinherited
-
iterator
→ Iterator<
Comment> -
A new
Iterator
that allows iterating the elements of thisIterable
.no setterinherited - last ↔ Comment
-
The last element.
getter/setter pairinherited
- length ↔ int
-
The number of objects in this list.
getter/setter pairinherited
- limit → int?
-
Max elements of the response
finalinherited
- offset → int?
-
The offset of the resources.
finalinherited
-
reversed
→ Iterable<
Comment> -
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
- single → Comment
-
Checks that this iterable has only one element, and returns that element.
no setterinherited
Methods
-
add(
Comment value) → void -
This operation is not supported by an unmodifiable list.
inherited
-
addAll(
Iterable< Comment> iterable) → void -
This operation is not supported by an unmodifiable list.
inherited
-
any(
bool test(Comment element)) → bool -
Checks whether any element of this iterable satisfies
test
.inherited -
asMap(
) → Map< int, Comment> -
An unmodifiable Map view of this list.
inherited
-
cast<
R> () → List< R> -
Returns a view of this list as a list of
R
instances.inherited -
clear(
) → void -
This operation is not supported by an unmodifiable list.
inherited
-
contains(
Object? element) → bool -
Whether the collection contains an element equal to
element
.inherited -
elementAt(
int index) → Comment -
Returns the
index
th element.inherited -
every(
bool test(Comment element)) → bool -
Checks whether every element of this iterable satisfies
test
.inherited -
expand<
T> (Iterable< T> f(Comment element)) → Iterable<T> -
Expands each element of this Iterable into zero or more elements.
inherited
-
fillRange(
int start, int end, [Comment? fillValue]) → void -
This operation is not supported by an unmodifiable list.
inherited
-
firstWhere(
bool test(Comment element), {Comment orElse()?}) → Comment -
The first element that satisfies the given predicate
test
.inherited -
fold<
T> (T initialValue, T combine(T previousValue, Comment element)) → T -
Reduces a collection to a single value by iteratively combining each
element of the collection with an existing value
inherited
-
followedBy(
Iterable< Comment> other) → Iterable<Comment> -
Creates the lazy concatenation of this iterable and
other
.inherited -
forEach(
void action(Comment element)) → void -
Invokes
action
on each element of this iterable in iteration order.inherited -
getRange(
int start, int end) → Iterable< Comment> -
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(Comment element), [int start = 0]) → int -
The first index in the list that satisfies the provided
test
.inherited -
insert(
int index, Comment element) → void -
This operation is not supported by an unmodifiable list.
inherited
-
insertAll(
int at, Iterable< Comment> iterable) → void -
This operation is not supported by an unmodifiable 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(Comment element), [int? start]) → int -
The last index in the list that satisfies the provided
test
.inherited -
lastWhere(
bool test(Comment element), {Comment orElse()?}) → Comment -
The last element that satisfies the given predicate
test
.inherited -
map<
T> (T f(Comment element)) → Iterable< T> -
The current elements of this iterable modified by
toElement
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
reduce(
Comment combine(Comment previousValue, Comment element)) → Comment -
Reduces a collection to a single value by iteratively combining elements
of the collection using the provided function.
inherited
-
remove(
Object? element) → bool -
This operation is not supported by an unmodifiable list.
inherited
-
removeAt(
int index) → Comment -
This operation is not supported by an unmodifiable list.
inherited
-
removeLast(
) → Comment -
This operation is not supported by an unmodifiable list.
inherited
-
removeRange(
int start, int end) → void -
This operation is not supported by an unmodifiable list.
inherited
-
removeWhere(
bool test(Comment element)) → void -
This operation is not supported by an unmodifiable list.
inherited
-
replaceRange(
int start, int end, Iterable< Comment> iterable) → void -
This operation is not supported by an unmodifiable list.
inherited
-
retainWhere(
bool test(Comment element)) → void -
This operation is not supported by an unmodifiable list.
inherited
-
setAll(
int at, Iterable< Comment> iterable) → void -
This operation is not supported by an unmodifiable list.
inherited
-
setRange(
int start, int end, Iterable< Comment> iterable, [int skipCount = 0]) → void -
This operation is not supported by an unmodifiable list.
inherited
-
shuffle(
[Random? random]) → void -
This operation is not supported by an unmodifiable list.
inherited
-
singleWhere(
bool test(Comment element), {Comment orElse()?}) → Comment -
The single element that satisfies
test
.inherited -
skip(
int count) → Iterable< Comment> -
Creates an Iterable that provides all but the first
count
elements.inherited -
skipWhile(
bool test(Comment element)) → Iterable< Comment> -
Creates an
Iterable
that skips leading elements whiletest
is satisfied.inherited -
sort(
[Comparator< Comment> ? compare]) → void -
This operation is not supported by an unmodifiable list.
inherited
-
sublist(
int start, [int? end]) → List< Comment> -
Returns a new list containing the elements between
start
andend
.inherited -
take(
int count) → Iterable< Comment> -
Creates a lazy iterable of the
count
first elements of this iterable.inherited -
takeWhile(
bool test(Comment element)) → Iterable< Comment> -
Creates a lazy iterable of the leading elements satisfying
test
.inherited -
toList(
{bool growable = true}) → List< Comment> -
Creates a List containing the elements of this Iterable.
inherited
-
toSet(
) → Set< Comment> -
Creates a Set containing the same elements as this iterable.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
where(
bool test(Comment element)) → Iterable< Comment> -
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 +(
List< Comment> other) → List<Comment> -
Returns the concatenation of this list and
other
.inherited -
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator [](
int index) → Comment -
The object at the given
index
in the list.inherited -
operator []=(
int index, Comment value) → void -
This operation is not supported by an unmodifiable list.
inherited