pathWithCorner method

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

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,
  );
}