AuthenticationManager constructor

AuthenticationManager(
  1. ClientIdentity clientIdentity, {
  2. List<String> scopes = const <String>[],
})

Creates an AuthenticationManager with the given clientIdentity and the given scopes (with an empty list as default).

Implementation

AuthenticationManager(this.clientIdentity, {this.scopes = const <String>[]});