fromUtf8 static method

Jwk fromUtf8(
  1. List<int> bytes
)

Constructs a private key from encoded JSON tree.

Implementation

static Jwk fromUtf8(List<int> bytes) {
  return fromJson(json.decode(utf8.decode(bytes)) as Map);
}