buildMatrix method

List<List<String>> buildMatrix()

Returns the matrix as an immutable list of rows: sample, option, formatted.

Implementation

List<List<String>> buildMatrix() => List<List<String>>.unmodifiable(_matrix);