linesDoPaint method
Implementation
List<NamedLine> linesDoPaint(DIRECTION direction, Paint paint, {List<String> includes = const [], List<String> excludes = const []}){
return linesDo(direction, (DIRECTION_ENUM d, name, _){
// if (kDebugMode) {
// ketchupDebug('Model d: $d, name: $name, list.paint: ${_[0].paint}, paint: $paint');
// }
return directionLines(d).update(name, (list)=>list.map<NamedLine>((unPaint){
return NamedLine.repaint(repaint: paint, copy: unPaint);
}).toList());
}, includes: includes, excludes: excludes);
}