hasScreenSharingApps static method

Future<bool> hasScreenSharingApps()

Implementation

static Future<bool> hasScreenSharingApps() async {
  try {
    final bool result = await platform.invokeMethod('checkScreenSharingApps');
    return result;
  }   catch (e) {

   // print("Failed to check for screen sharing apps: ${e.message}");
    return false;
  }
}