create SearchEmailFilter and Wrapper

This commit is contained in:
ManhNT
2022-06-24 13:37:48 +07:00
committed by Dat H. Pham
parent 6cdb698415
commit 55efe417b6
3 changed files with 84 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
class Wrapped<T> {
final T value;
const Wrapped.value(this.value);
}