applyStyle method
Implementation
VMobject applyStyle(SVGElementStyle style, VMobject mob) {
mob.setStyle(
fillColor: style.fillColor,
strokeColor: style.strokeColor,
strokeWidth: style.strokeWidth,
);
return mob;
}
VMobject applyStyle(SVGElementStyle style, VMobject mob) {
mob.setStyle(
fillColor: style.fillColor,
strokeColor: style.strokeColor,
strokeWidth: style.strokeWidth,
);
return mob;
}