init method
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',
);
}
}