showScreenSharingViewInFullscreenMode method

  1. @Deprecated('Since 2.5.0, please use [screen.showScreenSharingViewInFullscreenMode] instead')
void showScreenSharingViewInFullscreenMode(
  1. String userID,
  2. bool isFullscreen
)

This function is used to specify whether a certain user enters or exits full-screen mode during screen sharing. You need to provide the user's ID userID to determine which user to perform the operation on. By using a boolean value isFullscreen, you can specify whether the user enters or exits full-screen mode.

Implementation

@Deprecated(
    'Since 2.5.0, please use [screen.showScreenSharingViewInFullscreenMode] instead')
void showScreenSharingViewInFullscreenMode(String userID, bool isFullscreen) {
  screen.showScreenSharingViewInFullscreenMode(userID, isFullscreen);
}