AddTaskScreen constructor

const AddTaskScreen({
  1. Key? key,
  2. required HiveService hiveService,
  3. required FirestoreService firestoreService,
  4. required NotificationService notificationService,
})

Implementation

const AddTaskScreen({
  super.key,
  required this.hiveService,
  required this.firestoreService,
  required this.notificationService,
});