SimpleSlide constructor

SimpleSlide({
  1. String? title,
  2. String? background,
  3. required ContentOptions? contentOptions,
  4. String? style,
  5. TransitionOptions? transition,
  6. String? raw,
  7. required String data,
})

Implementation

SimpleSlide({
  super.title,
  super.background,
  required super.contentOptions,
  super.style,
  super.transition,
  super.raw,
  required super.data,
}) : super(layout: LayoutType.simple);