SvgTheme constructor

const SvgTheme({
  1. Color currentColor = const Color(0xFF000000),
  2. double fontSize = 14,
  3. double? xHeight,
})

Instantiates an SVG theme with the currentColor and fontSize.

Defaults the fontSize to 14.

Implementation

const SvgTheme({
  this.currentColor = const Color(0xFF000000),
  this.fontSize = 14,
  double? xHeight,
}) : xHeight = xHeight ?? fontSize / 2;