CustomFileWidget constructor

const CustomFileWidget({
  1. Key? key,
  2. String? filePath,
  3. BoxFit? fit,
  4. double? height,
  5. double? width,
  6. bool loader = false,
  7. double loaderSize = 30,
  8. double placeHolderSize = 40,
  9. double? radius,
  10. BorderRadiusGeometry? borderRadius,
  11. Color? placeHolderColor,
  12. String? placeHolder,
})

Implementation

const CustomFileWidget({
  super.key,
  this.filePath,
  this.fit,
  this.height,
  this.width,
  this.loader = false,
  this.loaderSize = 30,
  this.placeHolderSize = 40,
  this.radius,
  this.borderRadius,
  this.placeHolderColor,
  this.placeHolder,
});