pathWithCorner method
Implementation
Path pathWithCorner(
{double? topLeftCorner,
double? topRightCorner,
double? bottomLeftCorner,
double? bottomRightCorner,
double? allCorners,
double? leftCorners,
double? rightCorners,
double? topCorners,
double? bottomCorners}) {
return PathExtra.rrect(
this,
topLeftCorner: topLeftCorner,
topRightCorner: topRightCorner,
bottomLeftCorner: bottomLeftCorner,
bottomRightCorner: bottomRightCorner,
allCorners: allCorners,
leftCorners: leftCorners,
rightCorners: rightCorners,
topCorners: topCorners,
bottomCorners: bottomCorners,
);
}