SuiSecp256r1AccountPublicKey.fromStruct constructor
Creates a Secp256r1 public key from a structured JSON object.
Implementation
factory SuiSecp256r1AccountPublicKey.fromStruct(Map<String, dynamic> json) {
return SuiSecp256r1AccountPublicKey(
SuiSecp256r1PublicKey.fromStruct(json.asMap("publicKey")));
}