TF-3278 Handle open tmail app deep link but it was installed but signed in with the other account

This commit is contained in:
dab246
2024-12-10 15:21:48 +07:00
committed by Dat H. Pham
parent a4bb5b9ddf
commit c6ed9f7c2b
11 changed files with 453 additions and 54 deletions
+3 -3
View File
@@ -2,7 +2,7 @@ import 'package:equatable/equatable.dart';
import 'package:model/model.dart';
class DeepLinkData with EquatableMixin {
final String path;
final String action;
final String? accessToken;
final String? refreshToken;
final String? idToken;
@@ -10,7 +10,7 @@ class DeepLinkData with EquatableMixin {
final String? username;
DeepLinkData({
required this.path,
required this.action,
this.accessToken,
this.refreshToken,
this.idToken,
@@ -35,7 +35,7 @@ class DeepLinkData with EquatableMixin {
@override
List<Object?> get props => [
path,
action,
accessToken,
refreshToken,
idToken,