withShape method

Widget withShape(
  1. ShapeBorder shape
)

Implementation

Widget withShape(ShapeBorder shape) {
  return ClipPath(clipper: ShapeBorderClipper(shape: shape), child: this);
}