unsetConfidential method
Clear the confidential. This rect will not be cut/hidden when sharing video(stream of your screen) with remote participants
Implementation
Future<Either<ScreenMeetError, bool>> unsetConfidential(String id) async {
final Map result = await _channel.invokeMethod(_pm.kUnSetConfidential, id);
if (_pm.isSuccess(result)) { return Right(true);}
return Left(_pm.error(result));
}