xKeys property

List<String>? xKeys

Implementation

List<String>? get xKeys {
  _xKeys ??= List.from(_defaultXKeys);
  return _xKeys;
}
void xKeys=(List<String>? value)

Possible X keys in Map.

Implementation

set xKeys(List<String>? value) {
  _xKeys = value;
}