set notes default
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 38s
Pull Request Pipeline / lint (pull_request) Successful in 45s

This commit is contained in:
gelbeinhalb
2026-03-04 13:36:07 +01:00
parent f04d57382c
commit 5d45339337

View File

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