values method

Iterable<String>? values(
  1. String name
)

All the values of a given named property.

Returns null if there are no properties with the given name.

Implementation

Iterable<String>? values(String name) => _data[name];