updateLocationList method

  1. @override
void updateLocationList()
override

@brief Method is used to force reload location list.

Dart code snippet: @snippet location_list_manager_example.dart dart_LocationListManager_updateLocationList

Implementation

@override
void updateLocationList() {
    final _updateLocationListFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Void Function(Pointer<Void>, ),
        void Function(Pointer<Void>, )
      >('navigine_sdk_flutter_LocationListManager_updateLocationList'));
    final _handle = this.handle;
    _updateLocationListFfi(_handle, );
}