postThumbsFeedback method

Future<Response> postThumbsFeedback(
  1. Map<String, dynamic> body
)

Post thumbs up/down feedback

Implementation

Future<Response> postThumbsFeedback(Map<String, dynamic> body) async {
  try {
    return await _dio.post('product-user-reviews/', data: body);
  } catch (e) {
    rethrow;
  }
}