LogSchema constructor

LogSchema({
  1. required String character,
  2. required String account,
  3. required LogType type,
  4. required String description,
  5. required Object? content,
  6. required int cooldown,
  7. required DateTime? cooldownExpiration,
  8. required DateTime createdAt,
})

Returns a new LogSchema instance.

Implementation

LogSchema({
  required this.character,
  required this.account,
  required this.type,
  required this.description,
  required this.content,
  required this.cooldown,
  required this.cooldownExpiration,
  required this.createdAt,
});