validateSystemOverlayStyle function

SystemUiOverlayStyle? validateSystemOverlayStyle(
  1. SystemUiOverlayStyle? style
)

Validate system overlay style for security.

Implementation

SystemUiOverlayStyle? validateSystemOverlayStyle(SystemUiOverlayStyle? style) {
  // Just pass through - Flutter handles validation
  // This is a hook for future security checks if needed
  return style;
}