SearchList constructor

const SearchList({
  1. required bool getSearched,
  2. required bool isSearching,
  3. required bool isError,
  4. required MapModel mapModel,
  5. required Widget loader,
  6. required dynamic getLocation(
    1. LatLng
    ),
  7. required dynamic addressLabelState,
  8. required MapLocale mapLocale,
  9. Key? key,
})

Implementation

const SearchList({
  required this.getSearched,
  required this.isSearching,
  required this.isError,
  required this.mapModel,
  required this.loader,
  required this.getLocation,
  required this.addressLabelState,
  required this.mapLocale,
  Key? key,
}) : super(key: key);