timeoutForAboutToLogOutCallbackMill property
int
get
timeoutForAboutToLogOutCallbackMill
Implementation
static int get timeoutForAboutToLogOutCallbackMill {
const envValue = int.fromEnvironment('timeoutForAboutToLogOutCallbackMill', defaultValue: -1);
if (envValue != -1) {
return envValue;
} else {
final remoteValue = g<RemoteConfigRepoInt>().getInt('timeoutForAboutToLogOutCallbackMill');
if (remoteValue > 0) {
final bounds = configBounds['timeoutForAboutToLogOutCallbackMill']!;
return remoteValue.clamp(bounds.min, bounds.max);
} else {
return defaultRemoteConfig['timeoutForAboutToLogOutCallbackMill'] as int;
}
}
}