smoothShape static method

Path smoothShape(
  1. List<Offset> points, {
  2. double cornerRadius = 4.0,
})

Implementation

static Path smoothShape(List<Offset> points, {double cornerRadius = 4.0}) {
  return _closedPath(points, cornerRadius: cornerRadius);
}