retrofit 0.6.3 retrofit: ^0.6.3 copied to clipboard
retrofit.dart is an dio client generator using source_gen and inspired by Chopper and Retrofit.
Changelog #
0.6.3 #
- Added
autoCastResponse
option toRestApi
and allMethod
annotations (default :true
) - Added
auto_cast_response
to builder options.-
Users can specify this in
build.yaml
as global defaulttargets: $default: sources: ['lib/**'] builders: retrofit_generator|retrofit: enabled: true options: auto_cast_response: true
-
0.6.2 #
- fix: fix bad cast exception (#47)
- add CancelToken, SendProgress, and ReceiveProgress (#46)
0.6.0 #
- [BREAKING CHANGE] only works dart 2.2.2 and above
- Added support to multiple clients with different base urls.
0.5.0 #
- Fixed analysis report
use
retrofit.dart
instead ofhttp.dart
anddio.dart
to import classes
0.4.3 #
- Updated docs and sample code
0.2.3 #
- Added optional parameter
fileName
in@Field
annotation for custom file name
0.2.2 #
- add example
0.2.0 #
-
Added
@Extra
to pass extra options to dio requests, response, transformer and interceptors.Example :
@http.POST('/path/') @dio.Extra({'my_key':'my_value'}) Future<String>> myMethod();
-
Fixed general dart style and code conventions
-
Automatically
null
check withArgumentError.checkNotNull
for required parameters -
Now SuperClasses can use forwarding/redirecting constructors instead of static
instance()
methodExample :
@RestApi(baseUrl: "https://httpbin.org/") abstract class RestClient { /// Forwarding constructor factory RestClient([Dio dio]) = _RestClient; }
0.1.0 #
- fix health issues
0.0.1 #
- init