Image constructor

const Image({
  1. Key? key,
  2. required Uri source,
  3. int? width,
  4. int? height,
  5. String? description,
  6. String? tooltip,
  7. bool lazyLoading = false,
})

Implementation

const Image({
  super.key,
  required this.source,
  this.width,
  this.height,
  this.description,
  this.tooltip,
  this.lazyLoading = false,
});