showOnMap function
Implementation
showOnMap(BuildContext context, LatLng location, String? title) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => LocationDialog(
title: title,
postion: google.LatLng(location.latitude, location.longitude),
)),
);
}