getColWidth method

Future<int> getColWidth(
  1. int col
)

Get the width of a specific column.

Implementation

Future<int> getColWidth(int col) async {
  final config = await _getConfig();
  return config.layout.defaultColWidth;
}