selectionInfo property

String get selectionInfo

Implementation

String get selectionInfo {
  if (selectedCount == 0) return 'No items selected';
  if (selectedCount == 1) return '1 item selected';
  return '$selectedCount items selected';
}