maskWidgetInternally static method

void maskWidgetInternally({
  1. required String widgetId,
  2. required double top,
  3. required double left,
  4. required double bottom,
  5. required double right,
  6. required double width,
  7. required double height,
})

Implementation

static void maskWidgetInternally(
    {required String widgetId,
    required double top,
    required double left,
    required double bottom,
    required double right,
    required double width,
    required double height}) {
  CuxAnalytics._cuxCallback?.addMaskingWidgetInfo(
      widgetId,
      _MaskingWidgetInfo(
        widgetId: widgetId,
        width: width,
        height: height,
        x1: left,
        x2: right,
        y1: top,
        y2: bottom,
      ));
}