appKeyInterceptor property
read / write
Implementation
static Interceptor appKeyInterceptor =
InterceptorsWrapper(onRequest: (RequestOptions options) async {
var appKey = KakaoContext.clientId;
options.headers["Authorization"] = "KakaoAK $appKey";
return options;
})