CToken constructor
CToken(
- String key
Creates a new instance of CToken with the given key.
key - The key used to create the JSON Web Key.
Implementation
CToken(String key)
: _jsonWebKey = JsonWebKey.fromJson({"kty": "oct", "k": key});