Line data Source code
1 : part of 'forgot_bloc.dart';
2 :
3 : @freezed
4 : abstract class ForgotState with _$ForgotState {
5 : const factory ForgotState({
6 : @required bool isEmailValid,
7 : @required bool isSubmitting,
8 : @required bool isSuccess,
9 : @required bool isFailure,
10 : String error,
11 : }) = _ForgotState;
12 :
13 0 : factory ForgotState.empty() {
14 : return const ForgotState(
15 : isEmailValid: true,
16 : isSubmitting: false,
17 : isSuccess: false,
18 : isFailure: false,
19 : );
20 : }
21 :
22 0 : factory ForgotState.loading() {
23 : return const ForgotState(
24 : isEmailValid: true,
25 : isSubmitting: true,
26 : isSuccess: false,
27 : isFailure: false,
28 : );
29 : }
30 :
31 0 : factory ForgotState.failure(String error) {
32 0 : return ForgotState(
33 : isEmailValid: true,
34 : isSubmitting: false,
35 : isSuccess: false,
36 : isFailure: true,
37 : error: error,
38 : );
39 : }
40 :
41 0 : factory ForgotState.success() {
42 : return const ForgotState(
43 : isEmailValid: true,
44 : isSubmitting: false,
45 : isSuccess: true,
46 : isFailure: false,
47 : );
48 : }
49 : }
50 :
51 : extension ForgotStateX on ForgotState {
52 0 : bool get isFormValid => this.isEmailValid;
53 :
54 0 : ForgotState update({
55 : bool isEmailValid,
56 : bool isPasswordValid,
57 : }) {
58 0 : return this.copyWith(
59 : isEmailValid: isEmailValid,
60 : isSubmitting: false,
61 : isSuccess: false,
62 : isFailure: false,
63 : );
64 : }
65 : }
|