AdaptiveImage constructor

const AdaptiveImage(
  1. String? value, {
  2. Key? key,
  3. BorderRadius? borderRadius,
  4. double? width,
  5. double? height,
  6. BoxFit fit = BoxFit.cover,
  7. IconData placeholderIcon = Icons.image_not_supported_outlined,
  8. double? aspectRatio,
})

Implementation

const AdaptiveImage(
  this.value, {
  super.key,
  this.borderRadius,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
  this.placeholderIcon = Icons.image_not_supported_outlined,
  this.aspectRatio,
});