couponApply
This commit is contained in:
@@ -80,6 +80,22 @@ class ProductService extends ApiService {
|
||||
|
||||
return response;
|
||||
}
|
||||
Future offerCoupon(data) async {
|
||||
var response = await api.get(APIURL.offerCoupon, data: jsonEncode(data));
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
Future applyCoupon(data) async {
|
||||
var response = await api.post(APIURL.applyCoupon, data: jsonEncode(data));
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Future checkPin(data, pin) async {
|
||||
var response = await api.get(APIURL.checkPin + pin, data: jsonEncode(data));
|
||||
|
||||
Reference in New Issue
Block a user