FolderFile constructor

FolderFile(
  1. String name,
  2. String date,
  3. IconData image,
  4. bool folder,
)

Implementation

FolderFile(String name, String date, IconData image, bool folder) {
  this.image = image;
  this.name = name;
  this.date = date;
  this.folder = folder;
}