Tasks constructor

Tasks({
  1. required String task,
  2. required IconData icon,
  3. required Function onTap,
  4. double angle = 0.0,
})

Implementation

Tasks(
    {required this.task,
    required this.icon,
    required this.onTap,
    this.angle = 0.0});