onCameraId method
dynamic
onCameraId()
Implementation
onCameraId() async {
if (currentLocation.latitude != 0 && currentLocation.longitude != 0) {
final address = await getAddress(currentLocation);
_currentLocation = _currentLocation.copyWith(address: address);
currentLocation = _currentLocation;
notifyListeners();
}
}