moveToCurrentLocation method
void
moveToCurrentLocation()
Implementation
void moveToCurrentLocation() {
if (widget.isUseMapSDKLocation != null &&
widget.isUseMapSDKLocation == true) {
widget.locationUtils.moveToCurrentLocationActionWithSearchPOI(
moveMapCenter: mapKey.currentState!.moveMapCenter,
);
} else {
widget.locationUtils.moveToCurrentLocationActionWithoutSearchPOI(
moveMapCenter: mapKey.currentState!.moveMapCenter);
}
}