CodeAnnotatedRegion constructor

const CodeAnnotatedRegion({
  1. Key? key,
  2. required Widget child,
  3. StatusBarTheme theme = StatusBarTheme.light,
})

Creates a widget that sets system UI overlay styles for its child.

Implementation

const CodeAnnotatedRegion({
  super.key,
  required this.child,
  this.theme = StatusBarTheme.light,
});