FocusShapeCircle constructor

FocusShapeCircle({
  1. double? radius,
  2. Fill? fill,
  3. BuildContext? context,
})

Implementation

FocusShapeCircle({double? radius, Fill? fill, BuildContext? context})
    : radius = radius ??
          (MediaQueryData.fromView(FlutterViewUtils.get(context: context))
                      .size
                      .shortestSide *
                  70 /
                  100) /
              2,
      super(Shape.CIRCLE, fill);