VersionRow constructor

const VersionRow({
  1. required String userId,
  2. String? favoriteChatsListVersion,
  3. bool? favoriteChatsSynchronized,
  4. String? chatContactsListVersion,
  5. bool? favoriteContactsSynchronized,
  6. bool? contactsSynchronized,
  7. bool? blocklistSynchronized,
  8. String? sessionsListVersion,
  9. String? blocklistVersion,
  10. int? blocklistCount,
  11. String? directLinksListVersion,
})

Implementation

const VersionRow({
  required this.userId,
  this.favoriteChatsListVersion,
  this.favoriteChatsSynchronized,
  this.chatContactsListVersion,
  this.favoriteContactsSynchronized,
  this.contactsSynchronized,
  this.blocklistSynchronized,
  this.sessionsListVersion,
  this.blocklistVersion,
  this.blocklistCount,
  this.directLinksListVersion,
});