nodeValueKey property

String? nodeValueKey

Implementation

String? get nodeValueKey {
  return values[Field.key];
}
void nodeValueKey=(String? nodeValueKey)

Implementation

set nodeValueKey(String? nodeValueKey) {
  if (nodeValueKey == null) {
    values.remove(Field.key);
  } else {
    values[Field.key] = nodeValueKey;
  }
}