UdNetworkImage constructor

UdNetworkImage({
  1. double? height,
  2. double? width,
  3. String? httpPath,
  4. double? scale,
  5. Map<String, String>? headers,
  6. BoxFit? boxFit,
  7. Alignment? imageAlignment,
  8. double? borderRadius,
  9. Widget? child,
})

Using network images are now more easy with UdNetworkImage. Just check parameters and pass values.

Implementation

UdNetworkImage({
  this.height,
  this.width,
  this.httpPath,
  this.scale,
  this.headers,
  this.boxFit,
  this.imageAlignment,
  this.borderRadius,
  this.child,
});