pickledOlmAccount property

String? get pickledOlmAccount

Returns the base64 encoded keys to store them in a store. This String should never leave the device!

Implementation

String? get pickledOlmAccount {
  return enabled
      ? _olmAccount!.toPickleEncrypted(client.userID!.toPickleKey())
      : null;
}