ViewerMetadata_EntryGroup constructor

ViewerMetadata_EntryGroup({
  1. int? id,
  2. String? langDict,
  3. String? langTrans,
  4. Iterable<int>? entryIds,
  5. String? word,
  6. String? azureError,
})

Implementation

factory ViewerMetadata_EntryGroup({
  $core.int? id,
  $core.String? langDict,
  $core.String? langTrans,
  $core.Iterable<$core.int>? entryIds,
  $core.String? word,
  $core.String? azureError,
}) {
  final _result = create();
  if (id != null) {
    _result.id = id;
  }
  if (langDict != null) {
    _result.langDict = langDict;
  }
  if (langTrans != null) {
    _result.langTrans = langTrans;
  }
  if (entryIds != null) {
    _result.entryIds.addAll(entryIds);
  }
  if (word != null) {
    _result.word = word;
  }
  if (azureError != null) {
    _result.azureError = azureError;
  }
  return _result;
}