OrchardOutgoingViewingKey constructor

OrchardOutgoingViewingKey(
  1. List<int> key
)

Implementation

OrchardOutgoingViewingKey(List<int> key)
  : key =
        key
            .exc(
              length: 32,
              operation: "OrchardOutgoingViewingKey",
              name: "key",
              reason: "Invalid outgoing view key bytes length.",
            )
            .asImmutableBytes;