AppThemeScope constructor

const AppThemeScope({
  1. required Widget child,
  2. required AppThemeData theme,
  3. Key? key,
})

Implementation

const AppThemeScope({
  required super.child,
  required this.theme,
  super.key,
});