MapScreen constructor

MapScreen({
  1. Key? key,
  2. required String userkey,
  3. bool? searchfunction,
  4. bool? straightDistance,
  5. bool? routeDistance,
  6. bool? showRoute,
})

Implementation

MapScreen({
  super.key,
  required this.userkey,
  this.searchfunction,
  this.straightDistance,
  this.routeDistance,
  this.showRoute,
});