colCount method

Future<int> colCount()

Get the total number of columns.

Implementation

Future<int> colCount() async {
  final config = await _getConfig();
  return config.layout.cols;
}