equalsValue method

Expression<bool> equalsValue(
  1. D? dartValue
)

Compares this column against the mapped dartValue.

The value will be mapped using the converter applied to this column.

Implementation

Expression<bool> equalsValue(D? dartValue) {
  return equals(converter.mapToSql(dartValue) as S);
}