UdBase64Image constructor

UdBase64Image({
  1. double? height,
  2. double? width,
  3. String? base64bytes,
  4. BoxFit? boxFit,
  5. Alignment? imageAlignment,
  6. double? borderRadius,
  7. Widget? child,
})

Using base64 encoded byte images are now more easy with UdBase64Image. Just check parameters and pass values.

Implementation

UdBase64Image({
  this.height,
  this.width,
  this.base64bytes,
  this.boxFit,
  this.imageAlignment,
  this.borderRadius,
  this.child,
});