all property

double get all

Implementation

double get all {
  var radius = topLeft;
  if (radius < topRight) {
    radius = topRight;
  }
  if (radius < bottomLeft) {
    radius = bottomLeft;
  }
  if (radius < bottomRight) {
    radius = bottomRight;
  }
  return radius;
}