Neue Datenbank Struktur #156

Merged
flixcoo merged 94 commits from feature/88-neue-datenbank-struktur into development 2026-03-04 19:02:03 +00:00
Showing only changes of commit 5d45339337 - Show all commits

View File

@@ -11,9 +11,10 @@ class Player {
String? id,
DateTime? createdAt,
required this.name,
required this.description,
String? description,
}) : id = id ?? const Uuid().v4(),
createdAt = createdAt ?? clock.now();
createdAt = createdAt ?? clock.now(),
description = description ?? '';
@override
String toString() {