GeoformBottomInterface<U extends GeoformMarkerDatum> constructor

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

Implementation

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