Add issue templates, contribution guidelines, and code of conduct; update CI/CD workflows and project metadata
CI / format (pull_request) Successful in 38s
CI / analyze (pull_request) Successful in 18s
CI / test (pull_request) Successful in 42s
CI / pana (pull_request) Failing after 1m40s
CI / version-and-changelog (pull_request) Failing after 20s

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-05-13 13:58:28 +02:00
parent db0c862e79
commit 2229c638f9
13 changed files with 441 additions and 7 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ class ListOr<T> extends Object with ListMixin<T> {
@override
String toString() {
if (_items.length == 1) {
return _items.firstOrNull.toString();
return _items.first.toString();
}
return _items.toString();
}