edit static method
Implementation
static Widget edit({double? width, double? height, Color? color}) {
return SvgPicture.asset(
"${path}icon-edit.svg",
width: width,
height: height,
colorFilter:
color != null ? ColorFilter.mode(color, BlendMode.srcIn) : null,
);
}