This commit is contained in:
efrilm
2025-09-18 07:16:56 +07:00
parent b20854f329
commit 3b26b19b25
17 changed files with 1672 additions and 0 deletions
@@ -0,0 +1,20 @@
part of '../auth.dart';
@freezed
class Resend with _$Resend {
const factory Resend({
required String status,
required String message,
required String otpToken,
required int expiresIn,
required int nextResendIn,
}) = _Resend;
factory Resend.empty() => const Resend(
status: '',
message: '',
otpToken: '',
expiresIn: 0,
nextResendIn: 0,
);
}