corners property

Returns the GRectCornerRadius instance that describes the corner radii of this GRect.

Implementation

GRectCornerRadius? get corners {
  _corners ??= GRectCornerRadius();
  return _corners;
}
void corners=(GRectCornerRadius? value)

Sets the GRectCornerRadius instance that describes the corner radii of this GRect.

Implementation

set corners(GRectCornerRadius? value) {
  _corners = value;
}