GallerizePage constructor

const GallerizePage({
  1. Key? key,
  2. required String name,
  3. required String description,
  4. String? codeFile,
  5. Widget? preview,
  6. Map<String, TextStyle> highlightingTheme = draculaTheme,
})

Creates an instance of GallerizePage.

Implementation

const GallerizePage({
  Key? key,
  required this.name,
  required this.description,
  this.codeFile,
  this.preview,
  this.highlightingTheme = draculaTheme,
}) : super(key: key);