init method

Future<void> init()

Initializes this RxSessionImpl.

Implementation

Future<void> init() async {
  try {
    geo.value = await _repository.fetch(ip: session.value.ip);
  } catch (e) {
    Log.debug(
      'Failed to retrieve IP geolocation information: $e',
      '$runtimeType',
    );
  }
}