updateLocationList method

  1. @override
void updateLocationList()
override

Method is used to force reload location list.

Example:

// Force reload location list
_locationListManager!.updateLocationList();
print("Requested location list update");

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