FileCase constructor

const FileCase({
  1. Key? key,
  2. String? tag,
  3. Color? backgroundColor = Colors.white,
  4. Color? shadowColor = Colors.grey,
  5. Color? addButtonBackgroundColor,
  6. Color? addButtonIconColor = Colors.white,
  7. Color? fileNameColor = Colors.white,
  8. Color? fileIconColor = Colors.black,
})

FileCase widget displays selected files in a container On Rendering FileCase widget searches for FileController with the provided tag, which is initialized when an instance of FileCaseController is created with corresponding tag.

Implementation

const FileCase(
    {Key? key,
    this.tag,
    this.backgroundColor = Colors.white,
    this.shadowColor = Colors.grey,
    this.addButtonBackgroundColor,
    this.addButtonIconColor = Colors.white,
    this.fileNameColor = Colors.white,
    this.fileIconColor = Colors.black})
    : super(key: key);