debugPaint method
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();
}