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