KeynoteImageSlide constructor

const KeynoteImageSlide({
  1. required Widget image,
  2. EdgeInsets? padding,
  3. Key? key,
})

Constructs a KeynoteImageSlide.

image is the widget representing the image to display on the slide.

padding is the optional padding for the slide.

Implementation

const KeynoteImageSlide({
  required this.image,
  this.padding,
  super.key,
});