DatabaseColumnTimestamp constructor

  1. @literal
const DatabaseColumnTimestamp(
  1. String name, {
  2. bool indexed = true,
})

Implementation

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