All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dart2.auth.oauth.mustache Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
{{>header}}
{{>part_of}}
class OAuth implements Authentication {
  OAuth({this.accessToken});

  String accessToken;

  @override
  void applyToParams(List queryParams, Map headerParams) {
    if (accessToken != null) {
      headerParams['Authorization'] = 'Bearer $accessToken';
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy