hasDeviceSynced method

bool hasDeviceSynced(
  1. String deviceId
)

Check if a specific device has synced.

Implementation

bool hasDeviceSynced(String deviceId) {
  return devices?.containsKey(deviceId) ?? false;
}