maybeOf static method

Color? maybeOf(
  1. BuildContext context
)

Retrieve the CupertinoPageScaffold background color from the context.

Implementation

static Color? maybeOf(BuildContext context) {
  final CupertinoPageScaffoldBackgroundColor? scaffoldBackgroundColor = context.dependOnInheritedWidgetOfExactType<CupertinoPageScaffoldBackgroundColor>();
  return scaffoldBackgroundColor?.color;
}