GeoformBottomInterface<U extends GeoformMarkerDatum> constructor

const GeoformBottomInterface<U extends GeoformMarkerDatum>({
  1. required String title,
  2. required bool registerOnlyWithMarker,
  3. required U? selectedMarker,
  4. LatLng? currentPosition,
  5. GeoformBottomDisplayBuilder<U>? informationBuilder,
  6. GeoformBottomActionsBuilder<U>? actionsBuilder,
  7. void onRegisterPressed()?,
  8. void onActionPressed()?,
  9. TextEditingController? actionTextController,
  10. bool actionActivated = false,
  11. Key? key,
})

Implementation

const GeoformBottomInterface({
  required this.title,
  required this.registerOnlyWithMarker,
  required this.selectedMarker,
  this.currentPosition,
  this.informationBuilder,
  this.actionsBuilder,
  this.onRegisterPressed,
  this.onActionPressed,
  this.actionTextController,
  this.actionActivated = false,
  Key? key,
}) : super(key: key);