onSvgPicture function
Implementation
Widget onSvgPicture({
required String imagePath,
double size = 24,
double? width,
double? height,
Color? color,
}) {
return SvgPicture.asset(
imagePath,
width: width ?? size,
height: height ?? size,
colorFilter: color == null
? null
: ColorFilter.mode(
color,
BlendMode.srcIn,
),
);
}