MyApp constructor

const MyApp({
  1. Key? key,
  2. required NotificationService notificationService,
  3. required DatabaseReference databaseRef,
})

Implementation

const MyApp({
  Key? key,
  required this.notificationService,
  required this.databaseRef,
}) : super(key: key);