addres
This commit is contained in:
@@ -89,20 +89,22 @@ class AuthRepo {
|
||||
// }
|
||||
// }
|
||||
|
||||
FutureResult<String> customerRegister(data) async {
|
||||
FutureResult<RegistrationResponse> customerRegister(data) async {
|
||||
try {
|
||||
var response = await _authServices.userRegister(data);
|
||||
|
||||
RegistrationResponse registrationResponse =
|
||||
registrationResponseFromJson(response.toString());
|
||||
|
||||
await SharedPrefUtils.setToken(
|
||||
authToken: registrationResponse.accessToken ?? "");
|
||||
if (response.statCode) {
|
||||
print("dsfklgjkfgbfgkfdgjkhkfdjg");
|
||||
}
|
||||
print("dsfklgjkfgbfgkfdgjkhkfdjg ${registrationResponse.accessToken}");
|
||||
// if (response.statCode) {
|
||||
// print("dsfklgjkfgbfgkfdgjkhkfdjg");
|
||||
// }
|
||||
|
||||
final String model = response.toString();
|
||||
return right(model);
|
||||
return right(registrationResponse);
|
||||
} on DioException catch (e) {
|
||||
var error = CustomDioExceptions.handleError(e);
|
||||
return left(error);
|
||||
|
||||
@@ -14,9 +14,10 @@ class ProductRepo {
|
||||
|
||||
ProductRepo(this._productService);
|
||||
|
||||
FutureResult<AllProductModel> getAllProduct(data, BuildContext context) async {
|
||||
FutureResult<AllProductModel> getAllProduct(
|
||||
data, BuildContext context, id) async {
|
||||
try {
|
||||
var response = await _productService.getAllProduct(data);
|
||||
var response = await _productService.getAllProduct(data, id);
|
||||
|
||||
AllProductModel loginResponse =
|
||||
allProductModelFromJson(response.toString());
|
||||
@@ -30,7 +31,8 @@ class ProductRepo {
|
||||
}
|
||||
}
|
||||
|
||||
FutureResult<BestDealProduct> getBestDealProduct(data, BuildContext context) async {
|
||||
FutureResult<BestDealProduct> getBestDealProduct(
|
||||
data, BuildContext context) async {
|
||||
try {
|
||||
var response = await _productService.getBestDealProduct(data);
|
||||
|
||||
@@ -46,16 +48,48 @@ class ProductRepo {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
FutureResult<ProductCategory> getAllcategory(data, BuildContext context) async {
|
||||
FutureResult<ProductCategory> getAllcategory(
|
||||
data, BuildContext context) async {
|
||||
try {
|
||||
var response = await _productService.getAllcategory(data);
|
||||
|
||||
ProductCategory productCategory = productCategoryFromJson(response.toString());
|
||||
ProductCategory productCategory =
|
||||
productCategoryFromJson(response.toString());
|
||||
|
||||
// final String model = response.toString();
|
||||
// final String model = response.toString();
|
||||
|
||||
return right(productCategory);
|
||||
} on DioException catch (e) {
|
||||
print("djhgfjdfhjg ${e}");
|
||||
var error = CustomDioExceptions.handleError(e);
|
||||
return left(error);
|
||||
}
|
||||
}
|
||||
|
||||
FutureResult<String> addToWish(data) async
|
||||
{
|
||||
try {
|
||||
var response = await _productService.addToWish(data);
|
||||
|
||||
final String model = response.toString();
|
||||
|
||||
return right(model);
|
||||
} on DioException catch (e)
|
||||
{
|
||||
print("djhgfjdfhjg ${e}");
|
||||
var error = CustomDioExceptions.handleError(e);
|
||||
return left(error);
|
||||
}
|
||||
}
|
||||
|
||||
FutureResult<String> addToCart(data) async
|
||||
{
|
||||
try {
|
||||
var response = await _productService.addToCart(data);
|
||||
|
||||
final String model = response.toString();
|
||||
|
||||
return right(model);
|
||||
} on DioException catch (e)
|
||||
{
|
||||
print("djhgfjdfhjg ${e}");
|
||||
|
||||
Reference in New Issue
Block a user