Secp256k1Signature.fromJson constructor
Implementation
@override
factory Secp256k1Signature.fromJson(Map<String, dynamic> json) =>
Secp256k1Signature(
der: (json["der"].runtimeType == String)
? hexToBytes(json["der"])
: List<int>.from(json["der"].map((x) => x)),
);