ViewerMetadata_EntryGroup constructor
ViewerMetadata_EntryGroup({})
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;
}