FileImageView constructor

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

Implementation

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