yKeys property

List<String>? yKeys

Possible Y keys in Map.

Implementation

List<String>? get yKeys {
  _yKeys ??= _defaultYKeys;
  return _yKeys;
}
void yKeys=(List<String>? value)

Implementation

set yKeys(List<String>? value) {
  _yKeys = value;
}