ImagePreview constructor

const ImagePreview({
  1. Key? key,
  2. required String url,
  3. double? width,
  4. double? height,
  5. double radius = 8,
})

Implementation

const ImagePreview({
  super.key,
  required this.url,
  this.width,
  this.height,
  this.radius = 8,
});