screenSharingKey property

GlobalKey<State<StatefulWidget>>? screenSharingKey

The key of the widget that tis content will be shared during screen sharing

Implementation

GlobalKey? get screenSharingKey => _previewContainerKey;
void screenSharingKey=(GlobalKey<State<StatefulWidget>>? key)

Set the key of the widget that its content will be shared during screen sharing

Implementation

set screenSharingKey(GlobalKey? key) => _previewContainerKey = key;