ColabFileInput constructor

const ColabFileInput({
  1. Key? key,
  2. required double size,
  3. required VoidCallback onPickFileTap,
  4. required VoidCallback onDelete,
  5. String? filePath,
  6. Color backgroundColor = lightGreyColor,
})

Implementation

const ColabFileInput({
  super.key,
  required this.size,
  required this.onPickFileTap,
  required this.onDelete,
  this.filePath,
  this.backgroundColor = lightGreyColor,
});