GallerizeCode constructor

const GallerizeCode({
  1. Key? key,
  2. required String codeFile,
  3. Map<String, TextStyle> highlightingTheme = draculaTheme,
})

Creates an instance of GallerizeCode.

Implementation

const GallerizeCode({
  Key? key,
  required this.codeFile,
  this.highlightingTheme = draculaTheme,
}) : super(key: key);