heartbeatAsync method

Future<void> heartbeatAsync()

Just call the Seald server, without doing anything. This may be used, for example, to verify that the current instance has a valid identity.

Implementation

Future<void> heartbeatAsync() {
  return compute((_) => heartbeat(), null);
}