switchFloatWindowInApp method

void switchFloatWindowInApp(
  1. bool isFullScreen
)

Implementation

void switchFloatWindowInApp(bool isFullScreen) {
  if (this.isFullScreen is ValueNotifier<bool>) {
    (this.isFullScreen as ValueNotifier<bool>).value = isFullScreen;
  }
}