drawDRRect method

  1. @override
void drawDRRect(
  1. RRect outer,
  2. RRect inner,
  3. Paint paint
)
override

Draws a shape consisting of the difference between two rounded rectangles with the given Paint. Whether this shape is filled or stroked (or both) is controlled by Paint.style.

This shape is almost but not quite entirely unlike an annulus.

Implementation

@override
void drawDRRect(RRect outer, RRect inner, Paint paint) {
  addSkeleton(outer.outerRect, paint.color);
}