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