generate method

List<int> generate()

Generates a seed from the decoded entropy bytes.

This method generates a seed from the decoded entropy bytes obtained from the Monero mnemonic. The seed can be used for cryptographic purposes.

Returns a List

Implementation

List<int> generate() => List<int>.from(_entropyBytes);