SqlType constructor

SqlType(
  1. String type, {
  2. String constraint = notNull,
})

Implementation

factory SqlType(String type, {String constraint = notNull})
=> _SqlType(type, constraint: constraint);