BreakResponseSentence constructor

BreakResponseSentence({
  1. Iterable<PosLen>? words,
})

Implementation

factory BreakResponseSentence({
  $core.Iterable<PosLen>? words,
}) {
  final _result = create();
  if (words != null) {
    _result.words.addAll(words);
  }
  return _result;
}