drawRRect abstract method

void drawRRect(
  1. Rectangle<num> bounds, {
  2. Color? fill,
  3. Color? stroke,
  4. Color? patternColor,
  5. FillPatternType? fillPattern,
  6. double? patternStrokeWidthPx,
  7. double? strokeWidthPx,
  8. num? radius,
  9. bool roundTopLeft = false,
  10. bool roundTopRight = false,
  11. bool roundBottomLeft = false,
  12. bool roundBottomRight = false,
})

Renders a rounded rectangle.

Implementation

void drawRRect(
  Rectangle<num> bounds, {
  Color? fill,
  Color? stroke,
  Color? patternColor,
  FillPatternType? fillPattern,
  double? patternStrokeWidthPx,
  double? strokeWidthPx,
  num? radius,
  bool roundTopLeft = false,
  bool roundTopRight = false,
  bool roundBottomLeft = false,
  bool roundBottomRight = false,
});