debugDraw2 method

void debugDraw2(
  1. Canvas canvas
)

Implementation

void debugDraw2(Canvas canvas) {
  Paint mPaint = Paint();
  mPaint.color = Colors.red;
  mPaint.style = PaintingStyle.fill;
  canvas.drawRect(areaBounds, mPaint);
}