TF-145 Add domain layer for getAllEmail in Caching

This commit is contained in:
dab246
2021-10-07 15:01:23 +07:00
committed by Dat H. Pham
parent 0ac2460bdf
commit 3cac5e4e83
10 changed files with 166 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
extension ListExtension<T> on List<T>? {
List<T>? union(List<T>? other) {
if (other != null) {
this?.addAll(other);
}
return this;
}
}