TimerData constructor

TimerData({
  1. required String name,
  2. required bool autostart,
  3. required String groupName,
})

Implementation

TimerData({
  required this.name,
  required this.autostart,
  required this.groupName,
});