toVgTheme method
SvgTheme
toVgTheme()
Converts this SvgTheme to a vg.SvgTheme
.
Implementation
vg.SvgTheme toVgTheme() {
return vg.SvgTheme(
currentColor: vg.Color(currentColor.value),
fontSize: fontSize,
xHeight: xHeight,
);
}