getPkamPublicKey method
get it from atChops if we have it, otherwise try the keystore
Implementation
Future<String?> getPkamPublicKey() async {
String? v = atChopsKeys?.atPkamKeyPair?.atPublicKey.publicKey;
v ??= (await keyStore!.get(AtConstants.atPkamPublicKey))?.data;
return v;
}