debugTextPaint property

TextPaint debugTextPaint
override

Returns a TextPaint object with the debugColor set as color for the text.

Implementation

TextPaint get debugTextPaint => TextPaint(
      style: TextStyle(
        color: debugColor,
        fontSize: 12,
      ),
    );