stringColumn method

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

Implementation

@override
StringColumn stringColumn(String name, int maxLength,
    {bool allowNull = false, bool unique = false, Object? defaultValue}) {
  return new SqliteString(name, maxLength, unique: unique, allowNull: allowNull, defaultValue: defaultValue);
}