TimelineCategory constructor

const TimelineCategory({
  1. required String? key,
  2. required String title,
  3. required Widget icon,
  4. bool canCreate = true,
  5. bool canView = true,
})

Implementation

const TimelineCategory({
  required this.key,
  required this.title,
  required this.icon,
  this.canCreate = true,
  this.canView = true,
});