RRect.fromRectAndRadius constructor

RRect.fromRectAndRadius(
  1. Rect rect,
  2. Radius radius
)

Construct a rounded rectangle from its bounding box and a radius that is the same in each corner.

Will assert in debug mode if the radius is negative in either x or y.

Implementation

RRect.fromRectAndRadius(Rect rect, Radius radius)
  : this._raw(
      top: rect.top,
      left: rect.left,
      right: rect.right,
      bottom: rect.bottom,
      tlRadiusX: radius.x,
      tlRadiusY: radius.y,
      trRadiusX: radius.x,
      trRadiusY: radius.y,
      blRadiusX: radius.x,
      blRadiusY: radius.y,
      brRadiusX: radius.x,
      brRadiusY: radius.y,
    );