withField method

Iterable<Record> withField(
  1. String key
)

Records whose Record.fields holds key, regardless of value.

Implementation

Iterable<Record> withField(String key) =>
    _records.where((r) => r.fields.containsKey(key));