ImageSlotComponent constructor

const ImageSlotComponent({
  1. Key? key,
  2. required SlotState slot,
  3. required double width,
  4. required double height,
})

Implementation

const ImageSlotComponent({
  super.key,
  required this.slot,
  required this.width,
  required this.height,
});