shareScreen method

Future<Map> shareScreen()

Share the screen of your device

Implementation

Future<Map> shareScreen() async {
  final Map result = await _channel.invokeMethod(_pm.kShareScreenCommand);
  return result;
}