MyFilesScreen constructor

const MyFilesScreen({
  1. Key? key,
  2. required String filePath,
  3. List<String>? lastPath,
  4. Widget? loading,
  5. Widget? error,
})

Implementation

const MyFilesScreen({
  Key? key,
  required this.filePath,
  this.lastPath,
  this.loading,
  this.error,
}) : super(key: key);