AptosCryptoPublicKey<PUBLICKEY extends IPublicKey>.deserialize  constructor 
      
      AptosCryptoPublicKey<PUBLICKEY extends IPublicKey>.deserialize (})
     
    
    
Implementation
factory AptosCryptoPublicKey.deserialize(List<int> bytes,
    {String? property}) {
  final decode = BcsVariantSerialization.deserialize(
      bytes: bytes, layout: layout(property: property));
  return AptosCryptoPublicKey.fromStruct(decode);
}