tRightRad property

BorderRadius get tRightRad

Implementation

BorderRadius get tRightRad {
  double baseValue = topLeft.x > 0
      ? topLeft.x
      : (topRight.x > 0
          ? topRight.x
          : (bottomLeft.x > 0 ? bottomLeft.x : bottomRight.x));
  return copyWith(topRight: Radius.circular(baseValue));
}