DashboardButton constructor

const DashboardButton({
  1. required String title,
  2. required IconData icon,
  3. required Function onPressed,
  4. bool disabled = false,
})

Implementation

const DashboardButton({
  required this.title,
  required this.icon,
  required this.onPressed,
  this.disabled = false,
});