9b661b0688
Signed-off-by: dab246 <tdvu@linagora.com> (cherry picked from commit 7b0c0015a15a243b6b4aef3d78e7653d556ad109)
17 lines
395 B
Dart
17 lines
395 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 LoginArguments extends RouterArguments {
|
|
|
|
final LoginFormType loginFormType;
|
|
final String? baseUrl;
|
|
|
|
LoginArguments(this.loginFormType, {this.baseUrl});
|
|
|
|
@override
|
|
List<Object?> get props => [
|
|
loginFormType,
|
|
baseUrl
|
|
];
|
|
} |