debugPaint method

  1. @override
void debugPaint(
  1. Context context
)
override

Implementation

@override
void debugPaint(Context context) {
  context.canvas
    ..setStrokeColor(PdfColors.deepPurple)
    ..setLineWidth(1)
    ..drawRRect(box!.x, box!.y, box!.width, box!.height, horizontalRadius,
        verticalRadius)
    ..strokePath();
}