Timer constructor

Timer({
  1. required String name,
  2. required DateTime timestamp,
})

Implementation

Timer({
  required this.name,
  required this.timestamp,
});