SyncUpdate constructor

SyncUpdate({
  1. required String nextBatch,
  2. RoomsUpdate? rooms,
  3. List<Presence>? presence,
  4. List<BasicEvent>? accountData,
  5. List<BasicEventWithSender>? toDevice,
  6. DeviceListsUpdate? deviceLists,
  7. Map<String, int>? deviceOneTimeKeysCount,
  8. List<String>? deviceUnusedFallbackKeyTypes,
})

Implementation

SyncUpdate({
  required this.nextBatch,
  this.rooms,
  this.presence,
  this.accountData,
  this.toDevice,
  this.deviceLists,
  this.deviceOneTimeKeysCount,
  this.deviceUnusedFallbackKeyTypes,
});