width property
Combined width of the spans in this line.
Implementation
int get width => spans.fold(0, (width, span) => width + span.width);
Combined width of the spans in this line.
int get width => spans.fold(0, (width, span) => width + span.width);