load method
SvgPicture
load({})
Implementation
SvgPicture load({
double? width,
double? height,
Color? color,
BlendMode? blendMode,
BoxFit fit = BoxFit.fill,
}) {
return SvgPicture.asset(
'assets/$name.svg',
width: width,
height: height,
colorFilter: color != null
? ColorFilter.mode(color, blendMode ?? BlendMode.srcIn)
: null,
fit: fit,
);
}