InheritedCupertinoTheme constructor

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

Creates an InheritedTheme that provides a CupertinoTheme to all descendents.

Implementation

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