check method

ColumnDefinition check(
  1. String condition
)

Specifies a check constraint for the column.

Implementation

ColumnDefinition check(String condition) {
  _checkConstraint = condition;
  return this;
}