UFUSvgImage constructor

const UFUSvgImage({
  1. Key? key,
  2. required String assetPath,
  3. double? height,
  4. double? width,
  5. BoxFit fit = BoxFit.none,
  6. ColorFilter? colorFilter,
  7. bool? isRtl,
})

Implementation

const UFUSvgImage({
  super.key,
  required this.assetPath,
  this.height,
  this.width,
  this.fit = BoxFit.none,
  this.colorFilter,
  this.isRtl
});