BottomSheet constructor

const BottomSheet({
  1. Key? key,
  2. required dynamic updateVehicleType(
    1. String type
    ),
})

Implementation

const BottomSheet({
  super.key,
  required this.updateVehicleType,
});