encodeKey abstract method
Encodes a public key into a blockchain address.
This method takes a public key in the form of a List
pubKey
: The public key to be encoded as a blockchain address.kwargs
: Optional keyword arguments for encoder-specific options.
Returns the blockchain address string representing the encoded public key.
Implementation
String encodeKey(List<int> pubKey, [Map<String, dynamic> kwargs = const {}]);