BaseSVG constructor

const BaseSVG({
  1. Key? key,
  2. required String path,
  3. double? width,
  4. double? height,
  5. Color? color,
  6. BoxFit fit = BoxFit.contain,
})

Implementation

const BaseSVG(
    {Key? key,
    required this.path,
    this.width,
    this.height,
    this.color,
    this.fit = BoxFit.contain})
    : super(key: key);