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.6.0
Show newest version
{{>header}}
{{>part_of}}
class OAuth implements Authentication {
  OAuth({this.accessToken = ''});

  String accessToken;

  @override
  Future applyToParams(List queryParams, Map headerParams,) async {
    if (accessToken.isNotEmpty) {
      headerParams['Authorization'] = 'Bearer $accessToken';
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy