Entry_RawTranslation constructor

Entry_RawTranslation({
  1. String? lang,
  2. String? text,
  3. String? sourceType,
})

Implementation

factory Entry_RawTranslation({
  $core.String? lang,
  $core.String? text,
  $core.String? sourceType,
}) {
  final _result = create();
  if (lang != null) {
    _result.lang = lang;
  }
  if (text != null) {
    _result.text = text;
  }
  if (sourceType != null) {
    _result.sourceType = sourceType;
  }
  return _result;
}