enableNotchMode method

Future<void> enableNotchMode({
  1. double width = 130,
  2. double height = 30,
  3. double blurIntensity = 1.0,
})

Enables the notch mode with specified parameters.

  • width: The initial width.
  • height: The initial height.
  • blurIntensity: The blur intensity (0.0 to 1.0).

Implementation

Future<void> enableNotchMode({
  double width = 130,
  double height = 30,
  double blurIntensity = 1.0,
}) {
  throw UnimplementedError('enableNotchMode() has not been implemented.');
}