Add issue templates, contribution guidelines, and code of conduct; update CI/CD workflows and project metadata (#3)
Release / create-tag-and-release (push) Successful in 15s

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2026-05-13 14:13:57 +02:00
parent db0c862e79
commit 5987eba14b
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();
}