PosDef_Translation constructor
Implementation
factory PosDef_Translation({
$core.String? lang,
$core.String? text,
$core.String? wiktUsed,
}) {
final _result = create();
if (lang != null) {
_result.lang = lang;
}
if (text != null) {
_result.text = text;
}
if (wiktUsed != null) {
_result.wiktUsed = wiktUsed;
}
return _result;
}