extension ListExtension on List? { List? unite(List? other) { if (other != null) { this?.addAll(other); } return this; } bool notContains(T value) => this?.contains(value) != true; }