SyncResult constructor

const SyncResult({
  1. List<Conversation> conversations = const [],
  2. List<Message> messages = const [],
  3. List<ChatEvent> events = const [],
  4. String? nextSyncToken,
  5. bool hasMore = false,
})

Implementation

const SyncResult({
  this.conversations = const [],
  this.messages = const [],
  this.events = const [],
  this.nextSyncToken,
  this.hasMore = false,
});