Phase constructor

const Phase({
  1. required String title,
  2. required String description,
  3. required IconData icon,
})

Creates a new phase with the given properties.

Implementation

const Phase({
  required this.title,
  required this.description,
  required this.icon,
});