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