NiceBackupList constructor

const NiceBackupList({
  1. Key? key,
  2. required List<BackupEntry> entries,
  3. ValueChanged<BackupEntry>? onRestore,
  4. ValueChanged<BackupEntry>? onDelete,
  5. ValueChanged<BackupEntry>? onDownload,
  6. bool showFilters = true,
})

Implementation

const NiceBackupList({
  super.key,
  required this.entries,
  this.onRestore,
  this.onDelete,
  this.onDownload,
  this.showFilters = true,
});