LatLongSheet constructor

const LatLongSheet({
  1. Key? key,
  2. required LatLng location,
  3. required LocationCallback onLocationChanged,
})

Implementation

const LatLongSheet({
  super.key,
  required this.location,
  required this.onLocationChanged,
});