NiceBackupStatusBadge constructor

const NiceBackupStatusBadge({
  1. Key? key,
  2. required BackupStatus status,
  3. bool showAge = false,
  4. DateTime? createdAt,
  5. List<BackupTag> tags = const [],
  6. int maxTags = 2,
})

Implementation

const NiceBackupStatusBadge({
  super.key,
  required this.status,
  this.showAge = false,
  this.createdAt,
  this.tags = const [],
  this.maxTags = 2,
});