biggestWidth property

double biggestWidth

Implementation

double get biggestWidth => max(
    max(
        max(
            max(
                max(
                    max(max(topSide?.width ?? 0.0, rightSide?.width ?? 0.0),
                        bottomSide?.width ?? 0.0),
                    leftSide?.width ?? 0.0),
                bottomRightCornerSide?.width ?? 0.0),
            bottomLeftCornerSide?.width ?? 0.0),
        topRightCornerSide?.width ?? 0.0),
    topLeftCornerSide?.width ?? 0.0);