edit static method

Widget edit({
  1. double? width,
  2. double? height,
  3. Color? color,
})

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,
  );
}