TF-1718 Handle unsubscribe mail by mailto links

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit f96273c52456ecd758d8bbbafc4d2c7af6ec7921)
This commit is contained in:
dab246
2023-11-16 10:40:58 +07:00
committed by Dat Vu
parent 67f0b702ab
commit 41eb95257d
10 changed files with 95 additions and 3 deletions
@@ -1,6 +1,11 @@
class ServicePath {
import 'package:equatable/equatable.dart';
class ServicePath with EquatableMixin {
final String path;
ServicePath(this.path);
@override
List<Object?> get props => [path];
}