requestFullscreenIntentPermission method

Future<void> requestFullscreenIntentPermission()

Requests permission for fullscreen intent. This is typically used on Android to allow the app to display notifications in fullscreen mode. It is important to ensure that the user grants this permission for the app to function correctly

Implementation

Future<void> requestFullscreenIntentPermission() {
  throw UnimplementedError(
    'requestFullscreenIntentPermission() has not been implemented.',
  );
}