Flow.implicit constructor

Flow.implicit(
  1. Client client, {
  2. String? state,
})

Implementation

Flow.implicit(Client client, {String? state})
    : this._(
          FlowType.implicit,
          ['token id_token', 'id_token token', 'id_token', 'token']
              .firstWhere((v) =>
                  client.issuer!.metadata.responseTypesSupported.contains(v)),
          client,
          state: state);