bLeftRad property

BorderRadius get bLeftRad

Implementation

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