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!.left,
      box!.bottom,
      box!.width,
      box!.height,
      horizontalRadius,
      verticalRadius,
    )
    ..strokePath();
}