MSvg constructor

const MSvg({
  1. Key? key,
  2. Key? mkey,
  3. String? name,
  4. String? path,
  5. double? height = 25,
  6. double? width = 25,
  7. BoxFit fit = BoxFit.contain,
  8. Color? color,
  9. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const MSvg({
  Key? key,
  this.mkey,
  this.name,
  this.path,
  this.height = 25,
  this.width = 25,
  this.fit = BoxFit.contain,
  this.color,
  this.alignment = Alignment.center,
}) : super(key: key);