ViewerEntry_WNetSynsetEntry constructor
ViewerEntry_WNetSynsetEntry({
- int? entryId,
- int? entryPos,
- Iterable<
Entry_Form> ? forms,
Implementation
factory ViewerEntry_WNetSynsetEntry({
$core.int? entryId,
$core.int? entryPos,
$core.Iterable<$0.Entry_Form>? forms,
}) {
final _result = create();
if (entryId != null) {
_result.entryId = entryId;
}
if (entryPos != null) {
_result.entryPos = entryPos;
}
if (forms != null) {
_result.forms.addAll(forms);
}
return _result;
}