get method

List<T> get(
  1. String key
)

Returns a view of the record of values logged using key.

If the record is empty or does not exist, an empty list is returned.

Implementation

List<T> get(String key) => _data[key]?.unmodifiable ?? <T>[];