setConfidential method
Implementation
void setConfidential(String id, double x, double y, double width, double height) {
var map = <String, dynamic>{
'id': id,
'x': x,
'y': y,
'width': width,
'height': height
};
channel.invokeMethod(pm.kSetConfidential, map);
}