UdSvgImage constructor

UdSvgImage({
  1. double? height,
  2. double? width,
  3. String? imagePath,
  4. Color? color,
  5. BoxFit? boxFit,
  6. Alignment? imageAlignment,
  7. double? borderRadius,
})

Using svg images are now more easy with UdSvgImage. Just check parameters and pass values.

Implementation

UdSvgImage({
  this.height,
  this.width,
  this.imagePath,
  this.color,
  this.boxFit,
  this.imageAlignment,
  this.borderRadius,
});