check method

dynamic check(
  1. String expression
)

Implementation

check(String expression) {
  if (!column.contains("CHECK")) {
    if (!column.contains(",")) {
      column += " CHECK($expression)  ,";
    } else {
      column = "${column.replaceAll(",", "")}   CHECK($expression)  ,";
    }
  }
  return this;
}