CupertinoPageScaffoldBackgroundColor constructor

const CupertinoPageScaffoldBackgroundColor({
  1. required Widget child,
  2. required Color color,
  3. Key? key,
})

Constructs a new CupertinoPageScaffoldBackgroundColor.

Implementation

const CupertinoPageScaffoldBackgroundColor({
  required super.child,
  required this.color,
  super.key,
});