ModuleConfig_PaxcounterConfig constructor

ModuleConfig_PaxcounterConfig({
  1. bool? enabled,
  2. int? paxcounterUpdateInterval,
  3. int? wifiThreshold,
  4. int? bleThreshold,
})

Implementation

factory ModuleConfig_PaxcounterConfig({
  $core.bool? enabled,
  $core.int? paxcounterUpdateInterval,
  $core.int? wifiThreshold,
  $core.int? bleThreshold,
}) {
  final result = create();
  if (enabled != null) result.enabled = enabled;
  if (paxcounterUpdateInterval != null)
    result.paxcounterUpdateInterval = paxcounterUpdateInterval;
  if (wifiThreshold != null) result.wifiThreshold = wifiThreshold;
  if (bleThreshold != null) result.bleThreshold = bleThreshold;
  return result;
}