removeSecureRect static method

Future<void> removeSecureRect(
  1. Rectangle<double> rectangle
)

Implementation

static Future<void> removeSecureRect(Rectangle<double> rectangle) async {
  _init();
  await _channel?.invokeMethod('removeSecureRect', <String, dynamic>{
    'x': rectangle.left,
    'y': rectangle.top,
    'width': rectangle.width,
    'height': rectangle.height
  });
}