DashboardPage constructor

const DashboardPage({
  1. required IconData icon,
  2. required String title,
  3. required String route,
  4. required WidgetBuilder builder,
  5. String? description,
})

Implementation

const DashboardPage({
  required this.icon,
  required this.title,
  required this.route,
  required this.builder,
  this.description,
});