backendEmulatorRemoteAddress property

String get backendEmulatorRemoteAddress

Implementation

static String get backendEmulatorRemoteAddress {
  if (_backendEmulatorRemoteAddress == null) {
    const envValue = String.fromEnvironment('BACKEND_EMULATOR_REMOTE_ADDRESS');
    if (envValue.isNotEmpty) {
      _backendEmulatorRemoteAddress = envValue;
    } else {
      _backendEmulatorRemoteAddress = _getDefaultEmulatorAddress();
    }
  }
  return _backendEmulatorRemoteAddress!;
}