12 lines
393 B
Dart
12 lines
393 B
Dart
class ArgumentConstants {
|
|
static const String phoneNumber = "phone_number_args";
|
|
static const String forgotPasswordCode = "forgot_password_code_args";
|
|
|
|
static const String isPhoneNumberNotRegistered = "is_phone_number_not_registered";
|
|
static const String otpCalledFrom = "otp_called_from_args";
|
|
|
|
//Success Screen
|
|
static const String successContentType = "success_screen_args";
|
|
}
|
|
|