rrect static method
Path
rrect(
- Rect rect, {
- double? topLeftCorner,
- double? topRightCorner,
- double? bottomLeftCorner,
- double? bottomRightCorner,
- double? allCorners,
- double? leftCorners,
- double? rightCorners,
- double? topCorners,
- 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,
);
}