9b661b0688
Signed-off-by: dab246 <tdvu@linagora.com> (cherry picked from commit 7b0c0015a15a243b6b4aef3d78e7653d556ad109)
20 lines
409 B
Dart
20 lines
409 B
Dart
|
|
import 'package:tmail_ui_user/features/login/presentation/login_form_type.dart';
|
|
import 'package:tmail_ui_user/main/routes/router_arguments.dart';
|
|
|
|
class SessionArguments extends RouterArguments {
|
|
|
|
final LoginFormType loginFormType;
|
|
final String baseUrl;
|
|
|
|
SessionArguments(
|
|
this.loginFormType,
|
|
this.baseUrl
|
|
);
|
|
|
|
@override
|
|
List<Object?> get props => [
|
|
loginFormType,
|
|
baseUrl,
|
|
];
|
|
} |