CacheBucketTile constructor

const CacheBucketTile({
  1. Key? key,
  2. required String bucketName,
  3. bool showClearButton = false,
  4. VoidCallback? onClear,
  5. VoidCallback? onTap,
  6. bool isSelected = false,
  7. ValueChanged<bool>? onSelectionChanged,
  8. Color? dotColor,
  9. CacheManagerTheme? theme,
  10. BucketReport? report,
})

Creates a new CacheBucketTile.

Implementation

const CacheBucketTile({
  super.key,
  required this.bucketName,
  this.showClearButton = false,
  this.onClear,
  this.onTap,
  this.isSelected = false,
  this.onSelectionChanged,
  this.dotColor,
  this.theme,
  this.report,
});