RecordList class

RecordList is a dynamic DTO that represents a two-dimensional data structure.

For example

import 'package:nimbus4flutter/nimbus4flutter.dart';

RecordList list = RecordList(
  RecordSchema(
    [
      FieldSchema<String>("name"),
      FieldSchema<int>("age")
    ]
  )
);
Record record1 = list.createRecord();
record1["name"] = "hoge";
record1["age"] = 20;
list.add(record1);
Record record2 = list.createRecord();
record2["name"] = "fuga";
record2["age"] = 15;
list.add(record2);
Implemented types
Available Extensions

Constructors

RecordList(RecordSchema schema)

Properties

dataSet DataSet?
The parent DataSet, which is null if it is an independent RecordList.
getter/setter pair
first Record
The first element.
getter/setter pairoverride
hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
Whether this collection has no elements.
no setteroverride
isNotEmpty bool
Whether this collection has at least one element.
no setteroverride
iterator Iterator<Record>
A new Iterator that allows iterating the elements of this Iterable.
no setteroverride
last Record
The last element.
getter/setter pairoverride
length int
The number of objects in this list.
getter/setter pairoverride
reversed Iterable<Record>
An Iterable of the objects in this list in reverse order.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schema RecordSchema
Schema definition
no setter
single Record
Checks that this iterable has only one element, and returns that element.
no setteroverride

Methods

add(Record value) → void
Adds value to the end of this list, extending the length by one.
override
addAll(Iterable<Record> iterable) → void
Appends all objects of iterable to the end of this list.
override
any(bool test(Record element)) bool
Checks whether any element of this iterable satisfies test.
override
asMap() Map<int, Record>
An unmodifiable Map view of this list.
override
cast<R>() List<R>
Returns a view of this list as a list of R instances.
override
clear() → void
Removes all objects from this list; the length of the list becomes zero.
override
clone([bool isDeep = false]) RecordList
Clone the data.
cloneEmpty() RecordList
contains(Object? element) bool
Whether the collection contains an element equal to element.
override
containsName(String name) bool
Check if a field with the given name exists.
createRecord({Map<String, Object>? values}) Record
elementAt(int index) Record
Returns the indexth element.
override
every(bool test(Record element)) bool
Checks whether every element of this iterable satisfies test.
override
expand<T>(Iterable<T> f(Record element)) Iterable<T>
Expands each element of this Iterable into zero or more elements.
override
fillRange(int start, int end, [Record? fillValue]) → void
Overwrites a range of elements with fillValue.
override
firstWhere(bool test(Record element), {Record orElse()?}) Record
The first element that satisfies the given predicate test.
override
fold<T>(T initialValue, T combine(T previousValue, Record element)) → T
Reduces a collection to a single value by iteratively combining each element of the collection with an existing value
override
followedBy(Iterable<Record> other) Iterable<Record>
Creates the lazy concatenation of this iterable and other.
override
forEach(void f(Record element)) → void
Invokes action on each element of this iterable in iteration order.
override
fromList(List? list, [Map<String, dynamic>? recordListSchemaMap, Map<String, dynamic>? schemaMap]) RecordList
Copies the value of the specified List to this RecordList.
fromMap(List? list) RecordList
Copies the value of the specified List to this RecordList.
fromMapByMap(Map? map) RecordList
Copies the value of the specified Map to this RecordList.
fromRecordList(RecordList? list) RecordList
Copies the value of the specified RecordList to this RecordList.
getRange(int start, int end) Iterable<Record>
Creates an Iterable that iterates over a range of elements.
override
hasValidateError() bool
indexOf(Record element, [int start = 0]) int
The first index of element in this list.
override
indexWhere(bool test(Record element), [int start = 0]) int
The first index in the list that satisfies the provided test.
override
insert(int index, Record value) → void
Inserts element at position index in this list.
override
insertAll(int index, Iterable<Record> iterable) → void
Inserts all objects of iterable at position index in this list.
override
join([String separator = ""]) String
Converts each element to a String and concatenates the strings.
override
lastIndexOf(Record element, [int? start]) int
The last index of element in this list.
override
lastIndexWhere(bool test(Record element), [int? start]) int
The last index in the list that satisfies the provided test.
override
lastWhere(bool test(Record element), {Record orElse()?}) Record
The last element that satisfies the given predicate test.
override
map<T>(T test(Record element)) Iterable<T>
The current elements of this iterable modified by toElement.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
primary(Record key) Record?
Primary key search with the specified Record as the key.
reduce(Record combine(Record value, Record element)) Record
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
override
remove(Object? value) bool
Removes the first occurrence of value from this list.
override
removeAt(int index) Record
Removes the object at position index from this list.
override
removeLast() Record
Removes and returns the last object in this list.
override
removeRange(int start, int end) → void
Removes a range of elements from the list.
override
removeWhere(bool test(Record element)) → void
Removes all objects from this list that satisfy test.
override
replaceRange(int start, int end, Iterable<Record> replacement) → void
Replaces a range of elements with the elements of replacements.
override
retainWhere(bool test(Record element)) → void
Removes all objects from this list that fail to satisfy test.
override
setAll(int index, Iterable<Record> iterable) → void
Overwrites elements with the objects of iterable.
override
setRange(int start, int end, Iterable<Record> iterable, [int skipCount = 0]) → void
Writes some elements of iterable into a range of this list.
override
shuffle([Random? random]) → void
Shuffles the elements of this list randomly.
override
singleWhere(bool test(Record element), {Record orElse()?}) Record
The single element that satisfies test.
override
skip(int count) Iterable<Record>
Creates an Iterable that provides all but the first count elements.
override
skipWhile(bool test(Record value)) Iterable<Record>
Creates an Iterable that skips leading elements while test is satisfied.
override
sort([int compare(Record a, Record b)?]) → void
Sorts this list according to the order specified by the compare function.
override
sortBy(List<String> names, [List<bool>? isAsc]) → void
Sort by the specified field name.
sublist(int start, [int? end]) List<Record>
Returns a new list containing the elements between start and end.
override
take(int count) Iterable<Record>
Creates a lazy iterable of the count first elements of this iterable.
override
takeWhile(bool test(Record value)) Iterable<Record>
Creates a lazy iterable of the leading elements satisfying test.
override
toDeepList({bool toJsonType = false}) List<List<Object?>>
Output the value of this RecordList to the List
toList({bool growable = true}) List<Record>
Creates a List containing the elements of this Iterable.
override
toMap({bool hasNull = true, bool toJsonType = false}) List<Map<String, Object?>>
Output the value of this record to the List
toSet() Set<Record>
Creates a Set containing the same elements as this iterable.
override
toString() String
A string representation of this object.
inherited
validate() → void
where(bool test(Record element)) Iterable<Record>
Creates a new lazy Iterable with all elements that satisfy the predicate test.
override
whereType<T>() Iterable<T>
Creates a new lazy Iterable with all elements that have type T.
override

Operators

operator +(List<Record> other) List<Record>
Returns the concatenation of this list and other.
override
operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) Record
The object at the given index in the list.
override
operator []=(int index, Record value) → void
Sets the value at the given index in the list to value.
override