SqliteString constructor

SqliteString(
  1. String name,
  2. int maxLength, {
  3. bool allowNull = false,
  4. bool unique = false,
  5. Object? defaultValue,
})

Implementation

SqliteString(String name, int maxLength, {bool allowNull = false, bool unique = false, Object? defaultValue})
    : super(name, maxLength, allowNull: allowNull, defaultValue: defaultValue, unique: unique) {
  this.type = "NVARCHAR($maxLength)";
}