DatabaseColumnTimestampDateTime constructor

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

Implementation

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