getTextForeGround static method

Paint getTextForeGround()

Implementation

static Paint getTextForeGround() {
  Paint paint = Paint();
  paint.style = PaintingStyle.fill;
  paint.strokeWidth = 1;
  paint.color = Colors.black;
  return paint;
}