containsName method

bool containsName(
  1. String name
)

Check if a field with the given name exists.

Implementation

bool containsName(String name) => _values == null ? false : _values!.containsKey(name);