DriveFileList constructor

DriveFileList({
  1. String? category,
  2. List<DriveFile> files = const <DriveFile>[],
  3. String? nextCursor,
  4. bool? searchCompleted,
})

Implementation

DriveFileList({
  this.category,
  this.files = const <DriveFile>[],
  this.nextCursor,
  this.searchCompleted,
});