get method

List<double>? get(
  1. int index,
  2. String key
)

Implementation

List<double>? get(int index, String key) {
  return _get(index)[slot.indexOf(key)]?.data;
}