reject method
Implementation
Future<T> reject(T entity) async {
return _dio
.post(url("reject"), data: entity.toJSON())
.then((response) => response.body<T>());
}
Future<T> reject(T entity) async {
return _dio
.post(url("reject"), data: entity.toJSON())
.then((response) => response.body<T>());
}