LocationSelectionModal constructor

const LocationSelectionModal({
  1. Key? key,
  2. required dynamic onLocationSelected(
    1. LocationItem
    ),
  3. List<LocationItem> provinces = const [],
  4. bool isLoading = false,
})

Implementation

const LocationSelectionModal({
  super.key,
  required this.onLocationSelected,
  this.provinces = const [],
  this.isLoading = false,
});