createMeta abstract method

Meta createMeta(
  1. VerifyKey pKey, {
  2. String? seed,
  3. TransportableData? fingerprint,
})

Creates a Meta instance from explicit components.

pKey is the public key for the entity. seed is the optional seed/entity name (used for fingerprint). fingerprint is the optional pre-generated fingerprint (signature of seed).

Returns a new Meta instance (validation via Meta.isValid recommended).

Implementation

Meta createMeta(VerifyKey pKey, {String? seed, TransportableData? fingerprint});