VocabRouteMsg constructor
VocabRouteMsg({})
Implementation
factory VocabRouteMsg({
VocabRouteMsg_Phase? phase,
$core.String? langDict,
$core.String? langTrans,
$core.String? langIndexId,
$core.String? query,
$core.String? wordText,
$core.String? entryTitle,
}) {
final _result = create();
if (phase != null) {
_result.phase = phase;
}
if (langDict != null) {
_result.langDict = langDict;
}
if (langTrans != null) {
_result.langTrans = langTrans;
}
if (langIndexId != null) {
_result.langIndexId = langIndexId;
}
if (query != null) {
_result.query = query;
}
if (wordText != null) {
_result.wordText = wordText;
}
if (entryTitle != null) {
_result.entryTitle = entryTitle;
}
return _result;
}