getClipPath method

  1. @override
Path getClipPath(
  1. Rect rect,
  2. TextDirection textDirection
)
override

Returns a closed Path that describes the outer edge of this decoration.

The default implementation throws. Subclasses must override this implementation to describe the clip path that should be applied to the decoration when it is used in a Container with an explicit Clip behavior.

See also:

Implementation

@override
Path getClipPath(Rect rect, TextDirection textDirection) {
  return shape.getOuterPath(rect, textDirection: textDirection);
}