IndexNode_WordItem constructor
Implementation
factory IndexNode_WordItem({
$core.int? entryId,
$core.String? word,
$core.int? flag,
$core.int? entryPos,
}) {
final _result = create();
if (entryId != null) {
_result.entryId = entryId;
}
if (word != null) {
_result.word = word;
}
if (flag != null) {
_result.flag = flag;
}
if (entryPos != null) {
_result.entryPos = entryPos;
}
return _result;
}