check phone repo

This commit is contained in:
efrilm
2025-09-18 05:51:17 +07:00
parent c072e4c168
commit c3263edb89
14 changed files with 1324 additions and 3 deletions
@@ -0,0 +1,9 @@
part of '../auth.dart';
@freezed
sealed class AuthFailure with _$AuthFailure {
const factory AuthFailure.serverError(ApiFailure failure) = _ServerError;
const factory AuthFailure.unexpectedError() = _UnexpectedError;
const factory AuthFailure.dynamicErrorMessage(String erroMessage) =
_DynamicErrorMessage;
}