UserPreferencesSection constructor Null safety

const UserPreferencesSection(
  1. {dynamic key,
  2. required dynamic userPreferences,
  3. required dynamic appLocalizations,
  4. required dynamic themeData}
)

Implementation

const UserPreferencesSection({
  Key? key,
  required this.userPreferences,
  required this.appLocalizations,
  required this.themeData,
}) : super(key: key);