Creates a Jwk instance from a JSON string.
The str parameter is a JSON string containing the JWK properties.
str
factory Jwk.fromString(String str) { return Jwk.fromJson(jsonDecode(str)); }