ImagePlaceholder constructor

const ImagePlaceholder({
  1. Key? key,
  2. BorderRadius? borderRadius,
  3. double? width,
  4. double? height,
  5. IconData icon = Icons.image_not_supported_outlined,
})

Implementation

const ImagePlaceholder({
  super.key,
  this.borderRadius,
  this.width,
  this.height,
  this.icon = Icons.image_not_supported_outlined,
});