loadSvg static method
Implementation
static Widget loadSvg(String filename, {double? width, double? height, Color? color, String? package, BoxFit fit = BoxFit.scaleDown, Clip clipBehavior = Clip.hardEdge}){
return SvgPicture.asset('assets/images/$filename', height: width, width: height, package: package, fit: fit, clipBehavior: clipBehavior);
}