AddPlaceOverlayButton constructor

const AddPlaceOverlayButton({
  1. Key? key,
  2. required bool isLoading,
  3. required bool isLoggedIn,
  4. VoidCallback? onTap,
})

Implementation

const AddPlaceOverlayButton({
  super.key,
  required this.isLoading,
  required this.isLoggedIn,
  this.onTap,
});