LinePainter constructor

LinePainter({
  1. TextStyle? textStyle = const TextStyle(color: Colors.black, fontSize: 16),
  2. LineDecoration? lineDecoration,
  3. required List<List<String>> letters,
  4. required List<WordLine> lineList,
  5. required Offset spacing,
  6. required List<String> hints,
  7. Color? correctColor = Colors.green,
})

Implementation

LinePainter({
  this.textStyle = const TextStyle(color: Colors.black, fontSize: 16),
  this.lineDecoration,
  required this.letters,
  required this.lineList,
  required this.spacing,
  required this.hints,
  this.correctColor = Colors.green,
});