RaTeXWidget constructor

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

Implementation

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