layout static method

Layout<Map<String, dynamic>> layout({
  1. String? property,
})
override

Defines the layout for the Secp256k1 public key structure.

Implementation

static Layout<Map<String, dynamic>> layout({String? property}) {
  return LayoutConst.struct([
    SuiSecp256k1PublicKey.layout(property: "publicKey"),
  ], property: property);
}