VersionsCompanion.insert constructor

VersionsCompanion.insert({
  1. required String userId,
  2. Value<String?> favoriteChatsListVersion = const Value.absent(),
  3. Value<bool?> favoriteChatsSynchronized = const Value.absent(),
  4. Value<String?> chatContactsListVersion = const Value.absent(),
  5. Value<bool?> favoriteContactsSynchronized = const Value.absent(),
  6. Value<bool?> contactsSynchronized = const Value.absent(),
  7. Value<bool?> blocklistSynchronized = const Value.absent(),
  8. Value<String?> sessionsListVersion = const Value.absent(),
  9. Value<String?> blocklistVersion = const Value.absent(),
  10. Value<int?> blocklistCount = const Value.absent(),
  11. Value<int> rowid = const Value.absent(),
})

Implementation

VersionsCompanion.insert({
  required String userId,
  this.favoriteChatsListVersion = const Value.absent(),
  this.favoriteChatsSynchronized = const Value.absent(),
  this.chatContactsListVersion = const Value.absent(),
  this.favoriteContactsSynchronized = const Value.absent(),
  this.contactsSynchronized = const Value.absent(),
  this.blocklistSynchronized = const Value.absent(),
  this.sessionsListVersion = const Value.absent(),
  this.blocklistVersion = const Value.absent(),
  this.blocklistCount = const Value.absent(),
  this.rowid = const Value.absent(),
}) : userId = Value(userId);