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}) {
  CuxAnalyticsImpl.maskWidgetInternally(
      widgetId: widgetId,
      top: top,
      left: left,
      bottom: bottom,
      right: right,
      width: width,
      height: height);
}