valueAt method
The value of element dot (live or tombstoned), or null if absent.
Implementation
T? valueAt(Dot dot) {
final loc = _locate(dot);
return loc == null ? null : loc.$1.values[loc.$2];
}
The value of element dot (live or tombstoned), or null if absent.
T? valueAt(Dot dot) {
final loc = _locate(dot);
return loc == null ? null : loc.$1.values[loc.$2];
}