verify method
Verifies that the admin peer's signature authorized revoking the revoked peer.
Implementation
Future<bool> verify() async {
return await Signing.instance.verify(
message: '$revokedPeerKey|${timestamp.millisecondsSinceEpoch}',
signature: peerSignature,
publicKey: peerKey,
);
}