ClientIdentity constructor

const ClientIdentity(
  1. String id, {
  2. String secret = '',
})

Creates a ClientIdentity with the given id and the secret which could be empty if the client is a public client.

Implementation

const ClientIdentity(this.id, {this.secret = ''});