ListCause constructor

const ListCause(
  1. {required int id,
  2. required String title,
  3. required IconData icon,
  4. required String description,
  5. required String headerImage,
  6. required bool selected}
)

Implementation

const ListCause({
  required this.id,
  required this.title,
  required this.icon,
  required this.description,
  required this.headerImage,
  required this.selected,
});