Tasks constructor

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

Implementation

const Tasks(
    {Key? key,
    required this.task,
    required this.icon,
    required this.onTap,
    this.angle = 0.0})
    : super(key: key);