DataLangConfig_Double constructor

DataLangConfig_Double({
  1. int? ch,
  2. String? dbl,
  3. int? code,
  4. Iterable<DataLangConfig_Double>? childs,
})

Implementation

factory DataLangConfig_Double({
  $core.int? ch,
  $core.String? dbl,
  $core.int? code,
  $core.Iterable<DataLangConfig_Double>? childs,
}) {
  final _result = create();
  if (ch != null) {
    _result.ch = ch;
  }
  if (dbl != null) {
    _result.dbl = dbl;
  }
  if (code != null) {
    _result.code = code;
  }
  if (childs != null) {
    _result.childs.addAll(childs);
  }
  return _result;
}