SlideSize constructor

const SlideSize({
  1. required int width,
  2. required int height,
})

creates an object which is utilized by PresentationWidget to determine the size of a SlideWidget while presenting.

Implementation

const SlideSize({required int width, required int height})
    : _width = width,
      _height = height;