DisplayImage constructor

const DisplayImage({
  1. Key? key,
  2. required String imageUrl,
  3. Color? backgroundColor,
  4. required Size size,
})

Implementation

const DisplayImage({
  super.key,
  required this.imageUrl,
  this.backgroundColor,
  required this.size,
});