asKeyPair method

KeyPair asKeyPair()

Convert the object to a Dart KeyPair.

final user = gun.user("some_user_public_key");
final userInfo = await user.info;

final keyPair = userInfo.asKeyPair();

Implementation

KeyPair asKeyPair() {
  return this as KeyPair;
}