AlertLocationDialog constructor

const AlertLocationDialog({
  1. Key? key,
  2. required dynamic action(
    1. bool activate
    ),
  3. String title = "Location is disabled!!",
  4. String description = "Must enable to have use of the feature in the app!",
})

Implementation

const AlertLocationDialog({
  Key? key,
  required this.action,
  this.title = "Location is disabled!!",
  this.description = "Must enable to have use of the feature in the app!",
}) : super(key: key);