OptionalClipRect constructor

const OptionalClipRect({
  1. Key? key,
  2. required Widget child,
  3. bool clip = true,
})

Implementation

const OptionalClipRect({Key? key, required this.child, this.clip = true})
    : super(key: key);