RaTeXWidget constructor

const RaTeXWidget({
  1. Key? key,
  2. required String latex,
  3. double fontSize = 24,
  4. bool displayMode = true,
  5. Color? color,
  6. Widget? loading,
  7. void onError(
    1. RaTeXException
    )?,
})

Implementation

const RaTeXWidget({
  super.key,
  required this.latex,
  this.fontSize = 24,
  this.displayMode = true,
  this.color,
  this.loading,
  this.onError,
});