CreatedAtColumn constructor

const CreatedAtColumn([
  1. String? name = 'created_at',
  2. bool isNullable = true,
  3. bool isGuarded = true
])

Implementation

const CreatedAtColumn([
  String? name = 'created_at',
  bool isNullable = true,
  bool isGuarded = true,
]) : super(name, isNullable: isNullable, isGuarded: isGuarded);