addressAtIndex method
Implementation
Future<Address> addressAtIndex({
required int typeIndex,
required int index,
}) async {
final publicKey = await pubKeyCallback(index: index, typeIndex: typeIndex);
return Address.publicKey(prefix: addressPrefix, publicKey: publicKey);
}