PosDefEntryChunk_ constructor

PosDefEntryChunk_({
  1. int? firstEntryId,
  2. Iterable<int>? localPoss,
})

Implementation

factory PosDefEntryChunk_({
  $core.int? firstEntryId,
  $core.Iterable<$core.int>? localPoss,
}) {
  final _result = create();
  if (firstEntryId != null) {
    _result.firstEntryId = firstEntryId;
  }
  if (localPoss != null) {
    _result.localPoss.addAll(localPoss);
  }
  return _result;
}