CupertinoScaffold constructor

const CupertinoScaffold({
  1. Key? key,
  2. required Widget body,
  3. Radius topRadius = _kDefaultTopRadius,
  4. Color transitionBackgroundColor = Colors.black,
  5. SystemUiOverlayStyle? overlayStyle,
})

Implementation

const CupertinoScaffold({
  Key? key,
  required this.body,
  this.topRadius = _kDefaultTopRadius,
  this.transitionBackgroundColor = Colors.black,
  this.overlayStyle,
}) : super(key: key);