MyApp constructor

const MyApp({
  1. Key? key,
  2. required PersonalDataProvider personalDataProvider,
  3. required DeviceProvider deviceProvider,
})

App builder. It returns a MultiProvider, creating all new providers except DeviceProvider and PersonalDataProvider that are already created

Implementation

const MyApp({super.key, required this.personalDataProvider, required this.deviceProvider});