asset static method

dynamic asset(
  1. String string, {
  2. double? height,
  3. double? width,
  4. Color? color,
})

Implementation

static asset(String string,{double? height,double? width,Color? color}){
  return SvgPicture.asset(
    string,
    height: height,
    width: width,
    color: color,
  );
}