DatabaseColumnBlobBase<T> constructor

  1. @literal
const DatabaseColumnBlobBase<T>(
  1. String name, {
  2. String constraints = 'NOT NULL',
  3. bool unique = false,
  4. bool indexed = false,
})

Implementation

@literal
const DatabaseColumnBlobBase(
  String name, {
  String constraints = 'NOT NULL',
  bool unique = false,
  bool indexed = false,
}) : super(
        name,
        'BLOB',
        constraints: constraints,
        unique: unique,
        indexed: indexed,
      );