getDeviceLastSync method

DateTime? getDeviceLastSync(
  1. String deviceId
)

Get last sync time for a specific device.

Implementation

DateTime? getDeviceLastSync(String deviceId) {
  return devices?[deviceId];
}