|
@@ -62,6 +62,7 @@ mixin _$AppConfig {
|
|
|
int? get adTimeoutDuration => throw _privateConstructorUsedError;
|
|
int? get adTimeoutDuration => throw _privateConstructorUsedError;
|
|
|
int? get reportActiveInterval => throw _privateConstructorUsedError;
|
|
int? get reportActiveInterval => throw _privateConstructorUsedError;
|
|
|
int? get serverTime => throw _privateConstructorUsedError;
|
|
int? get serverTime => throw _privateConstructorUsedError;
|
|
|
|
|
+ int? get vipRemainNotice => throw _privateConstructorUsedError;
|
|
|
SmartGeo? get smartGeo => throw _privateConstructorUsedError;
|
|
SmartGeo? get smartGeo => throw _privateConstructorUsedError;
|
|
|
|
|
|
|
|
/// Serializes this AppConfig to a JSON map.
|
|
/// Serializes this AppConfig to a JSON map.
|
|
@@ -119,6 +120,7 @@ abstract class $AppConfigCopyWith<$Res> {
|
|
|
int? adTimeoutDuration,
|
|
int? adTimeoutDuration,
|
|
|
int? reportActiveInterval,
|
|
int? reportActiveInterval,
|
|
|
int? serverTime,
|
|
int? serverTime,
|
|
|
|
|
+ int? vipRemainNotice,
|
|
|
SmartGeo? smartGeo,
|
|
SmartGeo? smartGeo,
|
|
|
});
|
|
});
|
|
|
|
|
|
|
@@ -179,6 +181,7 @@ class _$AppConfigCopyWithImpl<$Res, $Val extends AppConfig>
|
|
|
Object? adTimeoutDuration = freezed,
|
|
Object? adTimeoutDuration = freezed,
|
|
|
Object? reportActiveInterval = freezed,
|
|
Object? reportActiveInterval = freezed,
|
|
|
Object? serverTime = freezed,
|
|
Object? serverTime = freezed,
|
|
|
|
|
+ Object? vipRemainNotice = freezed,
|
|
|
Object? smartGeo = freezed,
|
|
Object? smartGeo = freezed,
|
|
|
}) {
|
|
}) {
|
|
|
return _then(
|
|
return _then(
|
|
@@ -339,6 +342,10 @@ class _$AppConfigCopyWithImpl<$Res, $Val extends AppConfig>
|
|
|
? _value.serverTime
|
|
? _value.serverTime
|
|
|
: serverTime // ignore: cast_nullable_to_non_nullable
|
|
: serverTime // ignore: cast_nullable_to_non_nullable
|
|
|
as int?,
|
|
as int?,
|
|
|
|
|
+ vipRemainNotice: freezed == vipRemainNotice
|
|
|
|
|
+ ? _value.vipRemainNotice
|
|
|
|
|
+ : vipRemainNotice // ignore: cast_nullable_to_non_nullable
|
|
|
|
|
+ as int?,
|
|
|
smartGeo: freezed == smartGeo
|
|
smartGeo: freezed == smartGeo
|
|
|
? _value.smartGeo
|
|
? _value.smartGeo
|
|
|
: smartGeo // ignore: cast_nullable_to_non_nullable
|
|
: smartGeo // ignore: cast_nullable_to_non_nullable
|
|
@@ -412,6 +419,7 @@ abstract class _$$AppConfigImplCopyWith<$Res>
|
|
|
int? adTimeoutDuration,
|
|
int? adTimeoutDuration,
|
|
|
int? reportActiveInterval,
|
|
int? reportActiveInterval,
|
|
|
int? serverTime,
|
|
int? serverTime,
|
|
|
|
|
+ int? vipRemainNotice,
|
|
|
SmartGeo? smartGeo,
|
|
SmartGeo? smartGeo,
|
|
|
});
|
|
});
|
|
|
|
|
|
|
@@ -472,6 +480,7 @@ class __$$AppConfigImplCopyWithImpl<$Res>
|
|
|
Object? adTimeoutDuration = freezed,
|
|
Object? adTimeoutDuration = freezed,
|
|
|
Object? reportActiveInterval = freezed,
|
|
Object? reportActiveInterval = freezed,
|
|
|
Object? serverTime = freezed,
|
|
Object? serverTime = freezed,
|
|
|
|
|
+ Object? vipRemainNotice = freezed,
|
|
|
Object? smartGeo = freezed,
|
|
Object? smartGeo = freezed,
|
|
|
}) {
|
|
}) {
|
|
|
return _then(
|
|
return _then(
|
|
@@ -632,6 +641,10 @@ class __$$AppConfigImplCopyWithImpl<$Res>
|
|
|
? _value.serverTime
|
|
? _value.serverTime
|
|
|
: serverTime // ignore: cast_nullable_to_non_nullable
|
|
: serverTime // ignore: cast_nullable_to_non_nullable
|
|
|
as int?,
|
|
as int?,
|
|
|
|
|
+ vipRemainNotice: freezed == vipRemainNotice
|
|
|
|
|
+ ? _value.vipRemainNotice
|
|
|
|
|
+ : vipRemainNotice // ignore: cast_nullable_to_non_nullable
|
|
|
|
|
+ as int?,
|
|
|
smartGeo: freezed == smartGeo
|
|
smartGeo: freezed == smartGeo
|
|
|
? _value.smartGeo
|
|
? _value.smartGeo
|
|
|
: smartGeo // ignore: cast_nullable_to_non_nullable
|
|
: smartGeo // ignore: cast_nullable_to_non_nullable
|
|
@@ -684,6 +697,7 @@ class _$AppConfigImpl with DiagnosticableTreeMixin implements _AppConfig {
|
|
|
this.adTimeoutDuration,
|
|
this.adTimeoutDuration,
|
|
|
this.reportActiveInterval,
|
|
this.reportActiveInterval,
|
|
|
this.serverTime,
|
|
this.serverTime,
|
|
|
|
|
+ this.vipRemainNotice,
|
|
|
this.smartGeo,
|
|
this.smartGeo,
|
|
|
}) : _apiIps = apiIps,
|
|
}) : _apiIps = apiIps,
|
|
|
_apiUrls = apiUrls,
|
|
_apiUrls = apiUrls,
|
|
@@ -947,11 +961,13 @@ class _$AppConfigImpl with DiagnosticableTreeMixin implements _AppConfig {
|
|
|
@override
|
|
@override
|
|
|
final int? serverTime;
|
|
final int? serverTime;
|
|
|
@override
|
|
@override
|
|
|
|
|
+ final int? vipRemainNotice;
|
|
|
|
|
+ @override
|
|
|
final SmartGeo? smartGeo;
|
|
final SmartGeo? smartGeo;
|
|
|
|
|
|
|
|
@override
|
|
@override
|
|
|
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
|
|
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
|
|
|
- return 'AppConfig(apiIps: $apiIps, apiUrls: $apiUrls, routerApiUrls: $routerApiUrls, appStatUrls: $appStatUrls, assetUrls: $assetUrls, logFileUploadUrls: $logFileUploadUrls, realityApiUrls: $realityApiUrls, realityAppStatUrls: $realityAppStatUrls, realityLogFileUploadUrls: $realityLogFileUploadUrls, autoPing: $autoPing, autoPingInterval: $autoPingInterval, backupApiUrls: $backupApiUrls, cacheDataEffectiveDays: $cacheDataEffectiveDays, contacts: $contacts, follows: $follows, providers: $providers, signalThresholds: $signalThresholds, packetLossThresholds: $packetLossThresholds, skipGeo: $skipGeo, speedTestTargetList: $speedTestTargetList, websiteUrl: $websiteUrl, visitorDisabled: $visitorDisabled, privacyAgreement: $privacyAgreement, email: $email, blackPkgs: $blackPkgs, whitePkgs: $whitePkgs, accelerationSampleCount: $accelerationSampleCount, minAccelerationSampleCount: $minAccelerationSampleCount, connectionWarningThreshold: $connectionWarningThreshold, connectiveTestUrl: $connectiveTestUrl, disabledLogModules: $disabledLogModules, realTimeDbPath: $realTimeDbPath, boostTimeInterval: $boostTimeInterval, pingDisplayMode: $pingDisplayMode, peekTimeInterval: $peekTimeInterval, enableAd: $enableAd, adTimeoutDuration: $adTimeoutDuration, reportActiveInterval: $reportActiveInterval, serverTime: $serverTime, smartGeo: $smartGeo)';
|
|
|
|
|
|
|
+ return 'AppConfig(apiIps: $apiIps, apiUrls: $apiUrls, routerApiUrls: $routerApiUrls, appStatUrls: $appStatUrls, assetUrls: $assetUrls, logFileUploadUrls: $logFileUploadUrls, realityApiUrls: $realityApiUrls, realityAppStatUrls: $realityAppStatUrls, realityLogFileUploadUrls: $realityLogFileUploadUrls, autoPing: $autoPing, autoPingInterval: $autoPingInterval, backupApiUrls: $backupApiUrls, cacheDataEffectiveDays: $cacheDataEffectiveDays, contacts: $contacts, follows: $follows, providers: $providers, signalThresholds: $signalThresholds, packetLossThresholds: $packetLossThresholds, skipGeo: $skipGeo, speedTestTargetList: $speedTestTargetList, websiteUrl: $websiteUrl, visitorDisabled: $visitorDisabled, privacyAgreement: $privacyAgreement, email: $email, blackPkgs: $blackPkgs, whitePkgs: $whitePkgs, accelerationSampleCount: $accelerationSampleCount, minAccelerationSampleCount: $minAccelerationSampleCount, connectionWarningThreshold: $connectionWarningThreshold, connectiveTestUrl: $connectiveTestUrl, disabledLogModules: $disabledLogModules, realTimeDbPath: $realTimeDbPath, boostTimeInterval: $boostTimeInterval, pingDisplayMode: $pingDisplayMode, peekTimeInterval: $peekTimeInterval, enableAd: $enableAd, adTimeoutDuration: $adTimeoutDuration, reportActiveInterval: $reportActiveInterval, serverTime: $serverTime, vipRemainNotice: $vipRemainNotice, smartGeo: $smartGeo)';
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
@override
|
|
@@ -1017,6 +1033,7 @@ class _$AppConfigImpl with DiagnosticableTreeMixin implements _AppConfig {
|
|
|
..add(DiagnosticsProperty('adTimeoutDuration', adTimeoutDuration))
|
|
..add(DiagnosticsProperty('adTimeoutDuration', adTimeoutDuration))
|
|
|
..add(DiagnosticsProperty('reportActiveInterval', reportActiveInterval))
|
|
..add(DiagnosticsProperty('reportActiveInterval', reportActiveInterval))
|
|
|
..add(DiagnosticsProperty('serverTime', serverTime))
|
|
..add(DiagnosticsProperty('serverTime', serverTime))
|
|
|
|
|
+ ..add(DiagnosticsProperty('vipRemainNotice', vipRemainNotice))
|
|
|
..add(DiagnosticsProperty('smartGeo', smartGeo));
|
|
..add(DiagnosticsProperty('smartGeo', smartGeo));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -1138,6 +1155,8 @@ class _$AppConfigImpl with DiagnosticableTreeMixin implements _AppConfig {
|
|
|
other.reportActiveInterval == reportActiveInterval) &&
|
|
other.reportActiveInterval == reportActiveInterval) &&
|
|
|
(identical(other.serverTime, serverTime) ||
|
|
(identical(other.serverTime, serverTime) ||
|
|
|
other.serverTime == serverTime) &&
|
|
other.serverTime == serverTime) &&
|
|
|
|
|
+ (identical(other.vipRemainNotice, vipRemainNotice) ||
|
|
|
|
|
+ other.vipRemainNotice == vipRemainNotice) &&
|
|
|
(identical(other.smartGeo, smartGeo) ||
|
|
(identical(other.smartGeo, smartGeo) ||
|
|
|
other.smartGeo == smartGeo));
|
|
other.smartGeo == smartGeo));
|
|
|
}
|
|
}
|
|
@@ -1185,6 +1204,7 @@ class _$AppConfigImpl with DiagnosticableTreeMixin implements _AppConfig {
|
|
|
adTimeoutDuration,
|
|
adTimeoutDuration,
|
|
|
reportActiveInterval,
|
|
reportActiveInterval,
|
|
|
serverTime,
|
|
serverTime,
|
|
|
|
|
+ vipRemainNotice,
|
|
|
smartGeo,
|
|
smartGeo,
|
|
|
]);
|
|
]);
|
|
|
|
|
|
|
@@ -1243,6 +1263,7 @@ abstract class _AppConfig implements AppConfig {
|
|
|
final int? adTimeoutDuration,
|
|
final int? adTimeoutDuration,
|
|
|
final int? reportActiveInterval,
|
|
final int? reportActiveInterval,
|
|
|
final int? serverTime,
|
|
final int? serverTime,
|
|
|
|
|
+ final int? vipRemainNotice,
|
|
|
final SmartGeo? smartGeo,
|
|
final SmartGeo? smartGeo,
|
|
|
}) = _$AppConfigImpl;
|
|
}) = _$AppConfigImpl;
|
|
|
|
|
|
|
@@ -1328,6 +1349,8 @@ abstract class _AppConfig implements AppConfig {
|
|
|
@override
|
|
@override
|
|
|
int? get serverTime;
|
|
int? get serverTime;
|
|
|
@override
|
|
@override
|
|
|
|
|
+ int? get vipRemainNotice;
|
|
|
|
|
+ @override
|
|
|
SmartGeo? get smartGeo;
|
|
SmartGeo? get smartGeo;
|
|
|
|
|
|
|
|
/// Create a copy of AppConfig
|
|
/// Create a copy of AppConfig
|