lineCount property
int
get
lineCount
Get total number of lines
Implementation
int get lineCount {
var total = 0;
for (final lines in linesByOpacity.values) {
total += lines.length;
}
return total;
}