width property

int get width

Implementation

int get width => lines.fold(0, (max, l) => l.width > max ? l.width : max);