MyFilesItems constructor

const MyFilesItems({
  1. Key? key,
  2. required FileSystemEntity item,
  3. required DateTime date,
  4. bool isShare = false,
  5. required Function onPushScreen,
  6. required Function onUnzipFile,
  7. required Function onOpenDocument,
  8. required Function onShared,
})

Implementation

const MyFilesItems({
  Key? key,
  required this.item,
  required this.date,
  this.isShare = false,
  required this.onPushScreen,
  required this.onUnzipFile,
  required this.onOpenDocument,
  required this.onShared,
}) : super(key: key);