AppImage constructor

const AppImage({
  1. Key? key,
  2. File? image,
  3. String? imagePath,
  4. double? width,
  5. double? height,
})

Implementation

const AppImage({
  super.key,
  this.image,
  this.imagePath,
  this.width,
  this.height,
});