IndexHashTableItem_Hash constructor
IndexHashTableItem_Hash({
- int? hashOffset,
- Iterable<
IndexHashTableItem_HashKey> ? hashKeys,
Implementation
factory IndexHashTableItem_Hash({
$core.int? hashOffset,
$core.Iterable<IndexHashTableItem_HashKey>? hashKeys,
}) {
final _result = create();
if (hashOffset != null) {
_result.hashOffset = hashOffset;
}
if (hashKeys != null) {
_result.hashKeys.addAll(hashKeys);
}
return _result;
}