clipsWithShapeBorder function

Matcher clipsWithShapeBorder(
  1. {required ShapeBorder shape}
)

Asserts that a Finder locates a single object whose root RenderObject is a RenderClipPath with a ShapeBorderClipper that clips to shape.

Implementation

Matcher clipsWithShapeBorder({ required ShapeBorder shape }) {
  return _ClipsWithShapeBorder(shape: shape);
}