text static method

TextColumn text(
  1. String name, {
  2. bool nullable = false,
  3. String? defaultValue,
  4. bool unique = false,
})

Implementation

static TextColumn text(String name, {bool nullable = false, String? defaultValue, bool unique = false}) => TextColumn(name, nullable: nullable, defaultValue: defaultValue, unique: unique);