Latex constructor

const Latex({
  1. Key? key,
  2. required String latex,
  3. LatexConfig config = const LatexConfig(),
  4. bool? isDarkTheme,
})

Implementation

const Latex({
  super.key,
  required this.latex,
  this.config = const LatexConfig(),
  this.isDarkTheme,
});