CustomFileWidget constructor

const CustomFileWidget({
  1. Key? key,
  2. String? filePath,
  3. BoxFit? boxfit,
  4. double? height,
  5. double? width,
})

Implementation

const CustomFileWidget({
  super.key,
  this.filePath,
  this.boxfit,
  this.height,
  this.width,
});