DatabaseColumnUnsigned constructor

  1. @literal
const DatabaseColumnUnsigned(
  1. String name, {
  2. bool unique = false,
  3. bool indexed = false,
})

Implementation

@literal
const DatabaseColumnUnsigned(
  String name, {
  bool unique = false,
  bool indexed = false,
}) : super(
        name,
        unique: unique,
        indexed: indexed,
      );