columnCount property

int get columnCount

Total number of columns in this deck.

Implementation

int get columnCount => matrix.isEmpty ? 0 : matrix.first.length;