### Retrofit Builder Implementation Source: https://pub.dev/documentation/retrofit_generator/latest/retrofit_generator/retrofitBuilder.html The `retrofitBuilder` function is the primary entry point for the Retrofit code generator. It accepts `BuilderOptions` and delegates to `generatorFactoryBuilder`. ```dart Builder retrofitBuilder(BuilderOptions options) => generatorFactoryBuilder(options); ``` -------------------------------- ### retrofitBuilder Source: https://pub.dev/documentation/retrofit_generator/latest/retrofit_generator The entry point for the Retrofit code generator when used with build_runner. It returns a Builder instance that can be configured. ```APIDOC ## retrofitBuilder ### Description Entry point for the Retrofit code generator for build_runner. ### Function Signature retrofitBuilder(BuilderOptions options) → Builder ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body None ### Request Example ```dart // Example usage within a build.yaml or similar configuration // This is a conceptual example as the actual integration is via build_runner // BuilderOptions options = ...; // Builder retrofitBuilderInstance = retrofitBuilder(options); ``` ### Response #### Success Response - **Builder** (Builder) - A Builder instance configured for Retrofit code generation. ``` -------------------------------- ### retrofitBuilder Function Source: https://pub.dev/documentation/retrofit_generator/latest/retrofit_generator/retrofitBuilder.html The entry point for the Retrofit code generator for build_runner. It takes BuilderOptions and returns a Builder. ```APIDOC ## retrofitBuilder Function ### Description Entry point for the Retrofit code generator for build_runner. ### Signature Builder retrofitBuilder(BuilderOptions options) ### Implementation ```dart Builder retrofitBuilder(BuilderOptions options) => generatorFactoryBuilder(options); ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.