Flutter - 如何在 Retrofit API 请求中设置动态基础 url?

Flutter - How to set dynamic base url in Retrofit API request?

这是我的 post API 的示例,我想更改此特定 API 端点的基础 URL。

@POST("/post")
@FormUrlEncoded()
Future<String> postUrlEncodedFormData(@Field() String hello);

经过一些资源我得到了这个解决方案及其对我的工作。

@POST("http://www.your_base_url.com/post")
@FormUrlEncoded()
Future<String> postUrlEncodedFormData(@Field() String hello);