MapScreen constructor

const MapScreen({
  1. Key? key,
  2. required String apiKey,
  3. required String appBarTitle,
  4. LatLngBounds? latLngBounds,
  5. String? outOfBoundsMessage = "",
  6. required String searchHint,
  7. required String addressTitle,
  8. required String confirmButtonText,
  9. required String language,
  10. String country = "",
  11. required Color confirmButtonColor,
  12. required Color pinColor,
  13. required Color confirmButtonTextColor,
  14. required String addressPlaceHolder,
  15. required Widget pinWidget,
  16. required LatLng initialLocation,
})

Implementation

const MapScreen(
    {Key? key,
      required this.apiKey,
      required this.appBarTitle,
      this.latLngBounds,
      this.outOfBoundsMessage="",
      required this.searchHint,
      required this.addressTitle,
      required this.confirmButtonText,
      required this.language,
      this.country="",
      required this.confirmButtonColor,
      required this.pinColor,
      required this.confirmButtonTextColor,
      required this.addressPlaceHolder, required this.pinWidget, required this.initialLocation})
    : super(key: key);