PosDefGlobalConfig constructor

PosDefGlobalConfig({
  1. Iterable<PosDefConfigLang>? langs,
})

Implementation

factory PosDefGlobalConfig({
  $core.Iterable<PosDefConfigLang>? langs,
}) {
  final _result = create();
  if (langs != null) {
    _result.langs.addAll(langs);
  }
  return _result;
}