KeyedJsonTable<T extends Comparable> constructor
Constructs a KeyedJsonTable with the specified keyName
and items
.
Implementation
KeyedJsonTable({
required this.keyName,
JsonTable items = const [],
}) {
_table = [];
if (items.isNotEmpty) {
addAll(items);
}
}