getLocalIdentityKey method

IdentityKey getLocalIdentityKey()

Implementation

IdentityKey getLocalIdentityKey() {
  try {
    return IdentityKey.fromBytes(
        Uint8List.fromList(_sessionStructure.localIdentityPublic), 0);
  } on InvalidKeyException catch (e) {
    throw AssertionError(e);
  }
}