dimensionLabel property

String get dimensionLabel

Get dimension label (e.g., "390 × 844")

Implementation

String get dimensionLabel => width == 0 ? '' : '${width.toInt()} × ${height.toInt()}';