values<T> method

List<T> values<T>(
  1. String key
)

Implementation

List<T> values<T>(String key) {
  return _values[key] as List<T>? ?? <T>[];
}