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) {
return remoteValue;
} else {
return defaultRemoteConfig['timeoutForAboutToLogOutCallbackMill'] as int;
}
}
}