devicesMissingKeysAsync method
Future<List<SealdDeviceMissingKeys> >
devicesMissingKeysAsync({
- bool forceLocalAccountUpdate = false,
List which of the devices of the current account are missing keys, so you can call massReencrypt for them.
forceLocalAccountUpdate
- Whether to update the local account. true
to update, false
to not update.
Returns a list of SealdDeviceMissingKeys instances.
Implementation
Future<List<SealdDeviceMissingKeys>> devicesMissingKeysAsync(
{bool forceLocalAccountUpdate = false}) {
return compute(
(bool forceLocalAccountUpdate) => devicesMissingKeys(
forceLocalAccountUpdate: forceLocalAccountUpdate),
forceLocalAccountUpdate);
}