Char function

SqlType Char(
  1. int length, {
  2. String constraint = notNull,
})

Implementation

SqlType Char(int length, {String constraint = notNull})
=> SqlType("char($length)", constraint: constraint);