DatabaseColumnIntegerBase<T> constructor

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

Implementation

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