hasColumn method

bool hasColumn(
  1. String column, {
  2. bool ignoreCase = false,
})

Returns true when column exists in columns.

Implementation

bool hasColumn(String column, {bool ignoreCase = false}) =>
    columnIndex(column, ignoreCase: ignoreCase) != null;