svg static method

Widget svg(
  1. String name, {
  2. double? width,
  3. double? height,
  4. BoxFit? fit,
  5. Color? color,
})

Implementation

static Widget svg(
  String name, {
  double? width,
  double? height,
  BoxFit? fit,
  Color? color,
}) {
  return SvgPicture.asset(
    "assets/images/$name.svg",
    width: width,
    height: height,
    color: color,
    package: _package,
  );
}