MultiImagePage constructor

const MultiImagePage({
  1. Key? key,
  2. required List<String> titles,
  3. required List<String> paths,
  4. String pageTitle = 'EVALUATION',
  5. bool svgImage = true,
  6. String? pageDoc,
})

Implementation

const MultiImagePage({
  super.key,
  required this.titles,
  required this.paths,
  this.pageTitle = 'EVALUATION',
  this.svgImage = true,
  this.pageDoc,
});