TF-145 Add domain layer for getAllEmail in Caching
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
extension ListExtension<T> on List<T>? {
|
||||
|
||||
List<T>? union(List<T>? other) {
|
||||
if (other != null) {
|
||||
this?.addAll(other);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user