drrect abstract method

void drrect({
  1. RRect? outer,
  2. RRect? inner,
  3. Color? color,
  4. double strokeWidth,
  5. bool hasMaskFilter,
  6. PaintingStyle style,
})

Indicates that a rounded rectangle outline is expected next.

The next call to Canvas.drawRRect is examined. Any arguments that are passed to this method are compared to the actual Canvas.drawRRect call's arguments and any mismatches result in failure.

If no call to Canvas.drawRRect was made, then this results in failure.

Any calls made between the last matched call (if any) and the Canvas.drawRRect call are ignored.

The Paint-related arguments (color, strokeWidth, hasMaskFilter, style) are compared against the state of the Paint object after the painting has completed, not at the time of the call. If the same Paint object is reused multiple times, then this may not match the actual arguments as they were seen by the method.

Implementation

void drrect({ RRect? outer, RRect? inner, Color? color, double strokeWidth, bool hasMaskFilter, PaintingStyle style });