dark static method

LatexTheme dark({
  1. Color color = Colors.white,
  2. Color backgroundColor = Colors.transparent,
})

Implementation

static LatexTheme dark({
  Color color = Colors.white,
  Color backgroundColor = Colors.transparent,
}) {
  return LatexTheme.fixed(
    colors: LatexThemeColors(color: color, backgroundColor: backgroundColor),
  );
}