FileImageView constructor

const FileImageView({
  1. required String path,
  2. double? width = 48,
  3. double? height = 48,
  4. double radius = 0,
  5. BoxFit fit = BoxFit.fill,
  6. Key? key,
})

Implementation

const FileImageView({
  required this.path,
  this.width = 48,
  this.height = 48,
  this.radius = 0,
  this.fit = BoxFit.fill,
  super.key});