Best way to set default header for all request in flutter http request

前端 未结 5 1609
臣服心动
臣服心动 2021-02-04 02:04

Sorry if this question so basic, but I am new to flutter and recently couldn\'t find a good way to set a default headers in the HTTP request I can extend the class or wrap a fun

5条回答
  •  悲&欢浪女
    2021-02-04 02:57

    this simple and easy way worked for me

    var _dio = Dio();
    _dio.options.headers= {"Authorization" : token};
    

提交回复
热议问题