IndexHashTableItem_Hash constructor

IndexHashTableItem_Hash({
  1. int? hashOffset,
  2. 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;
}