rrect static method

Path rrect(
  1. Rect rect, {
  2. double? topLeftCorner,
  3. double? topRightCorner,
  4. double? bottomLeftCorner,
  5. double? bottomRightCorner,
  6. double? allCorners,
  7. double? leftCorners,
  8. double? rightCorners,
  9. double? topCorners,
  10. double? bottomCorners,
})

Implementation

static Path rrect(Rect rect,
    {double? topLeftCorner,
    double? topRightCorner,
    double? bottomLeftCorner,
    double? bottomRightCorner,
    double? allCorners,
    double? leftCorners,
    double? rightCorners,
    double? topCorners,
    double? bottomCorners}) {
  return _rrectPath(
    rect,
    topLeftCorner: topLeftCorner,
    topRightCorner: topRightCorner,
    bottomLeftCorner: bottomLeftCorner,
    bottomRightCorner: bottomRightCorner,
    allCorners: allCorners,
    leftCorners: leftCorners,
    rightCorners: rightCorners,
    topCorners: topCorners,
    bottomCorners: bottomCorners,
  );
}