ImageFileView constructor

const ImageFileView({
  1. Key? key,
  2. required ImageFile imageFile,
  3. BoxFit fit = BoxFit.cover,
  4. BorderRadius? borderRadius,
  5. ImageErrorWidgetBuilder? errorBuilder,
  6. Color? backgroundColor,
})

Implementation

const ImageFileView(
    {super.key,
    required this.imageFile,
    this.fit = BoxFit.cover,
    this.borderRadius,
    this.errorBuilder,
    this.backgroundColor});