ImageView constructor

const ImageView({
  1. required String fileName,
  2. String? rootPath,
  3. double? width,
  4. double? height,
  5. BoxFit? fit,
  6. double borderRadius = 0,
  7. Key? key,
})

Implementation

const ImageView({
  required this.fileName,
  this.rootPath,
  this.width,
  this.height,
  this.fit,
this.borderRadius = 0
  ,super.key});