ModuleConfig_PaxcounterConfig constructor
ModuleConfig_PaxcounterConfig({})
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;
}