retrofit_generator 0.2.2 copy "retrofit_generator: ^0.2.2" to clipboard
retrofit_generator: ^0.2.2 copied to clipboard

outdated

retrofit generator is an dio client generator using source_gen and inspired by Chopper and Retrofit.

Changelog #

0.2.2 #

  • bump to 0.2.2

0.2.1 #

  • Fixed pub upload issue

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<Response<String>>> myMethod();
    
  • Fixed general dart style and code conventions

  • Automatically null check with ArgumentError.checkNotNull for required parameters

  • Now SuperClasses can use forwarding/redirecting constructors instead of static instance() method

    Example :

    @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
133
likes
0
pub points
98%
popularity

Publisher

verified publishermings.in

retrofit generator is an dio client generator using source_gen and inspired by Chopper and Retrofit.

Homepage

License

unknown (LICENSE)

Dependencies

built_collection, code_builder, dio, retrofit, source_gen, tuple

More

Packages that depend on retrofit_generator