setAt method

void setAt({
  1. Timestamp? createdAt,
  2. Timestamp? updatedAt,
})

Implementation

void setAt({
  Timestamp? createdAt,
  Timestamp? updatedAt,
}) {
  _createdAt = createdAt;
  _updatedAt = updatedAt;
}