LocationDetailsScreen constructor

const LocationDetailsScreen({
  1. Key? key,
  2. required Location location,
  3. void onRemoveLocation(
    1. Location location
    ) = _dummyOnRemoveLocation,
  4. bool disableControls = false,
})

Implementation

const LocationDetailsScreen(
    {super.key,
    required this.location,
    this.onRemoveLocation = _dummyOnRemoveLocation,
    this.disableControls = false});