RecommendedStep constructor

const RecommendedStep({
  1. required String title,
  2. required String subtitle,
  3. required String route,
  4. required IconData icon,
  5. required Color color,
})

Implementation

const RecommendedStep({
  required this.title,
  required this.subtitle,
  required this.route,
  required this.icon,
  required this.color,
});