UdSvgNetworkImage constructor

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

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

Implementation

UdSvgNetworkImage({
  this.height,
  this.width,
  required this.imageUrl,
  this.color,
  this.boxFit,
  this.imageAlignment,
  this.borderRadius,
});