columnNames method

List<String> columnNames()

The columns returned by this statement. This will only be available after step has been called once.

Implementation

List<String> columnNames() =>
    _obj.getColumnNames().toDart.map((e) => e.toDart).toList();