JsonWebKey.generate constructor
Generates a random key suitable for the specified algorithm
Implementation
factory JsonWebKey.generate(String? algorithm, {int? keyBitLength}) {
var alg = JsonWebAlgorithm.getByName(algorithm);
return alg.generateRandomKey(keyBitLength: keyBitLength);
}