applyToParams method
Apply authentication settings to header and query params.
Implementation
@override
void applyToParams(QueryParams params, Map<String, String?> headerParams) {
if (accessToken != null) {
headerParams["Authorization"] = "Bearer " + accessToken!;
}
}