vexana icon indicating copy to clipboard operation
vexana copied to clipboard

Vexana is network manager project with dio.

Results 20 vexana issues
Sort by recently updated
recently updated
newest added

Why is there no patch in request type?

![cache](https://user-images.githubusercontent.com/72016623/178919719-cbc19565-2e24-4c00-860f-07b294b3be96.PNG) Tek request'de datayı cache'leyebiliyorum. ama aynı anda iki farklı function'da cacheleme işlemi yapamıyorum. kullanıcı bilgilerini ve postlarını cachelemek istediğim de postların statuss'ü success dönüyor ama içi boş oluyor. tek...

Vexana kullanarak oluşturulan bir yapıda baseUrl özelliğine localde tutulan bir string url verildiğinde url görülmemektedir ve ekteki hata oluşmaktadır. Kullanımı : INetworkManager networkManager = NetworkManager( isEnableLogger: true, options: BaseOptions( baseUrl:...

Update file method added.

For example, if I don't have an internet connection and when the connection comes, how can I renew the request without missing it?

Sometimes when we test network request on localhost and we don't have SSL sertificate, so we can not use Dio requests, because it shows status code 301, but on real...

I'm not sure that is it a useful feature but I have little changes for issue #15 . I defined a variable in network manager class, so users can use...

enhancement

@VB10 - form data sending ability is provided. ```dart class UploadSoundModel extends INetworkModel with IFormDataModel { final FormData? files; UploadSoundModel({ this.files, }); @override UploadSoundModel fromJson(Map json) { return UploadSoundModel( files:...