copyWith method
Implementation
LoginState copyWith({bool? isLoading, String? error, bool? isSuccess}) =>
LoginState(
isLoading: isLoading ?? this.isLoading,
error: error,
isSuccess: isSuccess ?? this.isSuccess,
);
LoginState copyWith({bool? isLoading, String? error, bool? isSuccess}) =>
LoginState(
isLoading: isLoading ?? this.isLoading,
error: error,
isSuccess: isSuccess ?? this.isSuccess,
);