getKeys method
Implementation
List<CryptoHDKey> getKeys() {
Response response = nativeGetLength(nativeObject).ref;
final length = response.getUint32();
List<CryptoHDKey> cryptoHDKeys = [];
for (int i = 0; i < length; i++) {
response = getAccount(nativeObject, i).ref;
cryptoHDKeys.add(CryptoOutput(response.getObject()).getKey());
}
return cryptoHDKeys;
}