PosDef_EntryWithExamples constructor

PosDef_EntryWithExamples({
  1. int? entryId,
  2. Iterable<String>? examples,
})

Implementation

factory PosDef_EntryWithExamples({
  $core.int? entryId,
  $core.Iterable<$core.String>? examples,
}) {
  final _result = create();
  if (entryId != null) {
    _result.entryId = entryId;
  }
  if (examples != null) {
    _result.examples.addAll(examples);
  }
  return _result;
}