NavigationMap constructor

const NavigationMap({
  1. Key? key,
  2. required String mapboxAccessToken,
  3. bool showSearchBar = true,
  4. List<List<double>>? routeCoordinatesList,
})

Implementation

const NavigationMap({
  super.key,
  required this.mapboxAccessToken,
  this.showSearchBar = true,
  this.routeCoordinatesList,
});