PlaceholderImage constructor

const PlaceholderImage({
  1. IconData? iconData,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. bool loading = false,
  6. BorderRadius? borderRaius,
  7. Color? backgroundColor,
  8. List<Color>? backgroundColors,
})

Implementation

const PlaceholderImage({
  this.iconData,
  this.child,
  this.width,
  this.height,
  this.loading = false,
  this.borderRaius,
  this.backgroundColor,
  this.backgroundColors,
});