copyWith method

FirebaseChatOptions copyWith({
  1. String? groupChatsCollectionName,
  2. String? chatsCollectionName,
  3. String? messagesCollectionName,
  4. String? usersCollectionName,
  5. String? chatsMetaDataCollectionName,
  6. String? userChatsCollectionName,
})

Creates a copy of this FirebaseChatOptions but with the given fields replaced with the new values.

Implementation

FirebaseChatOptions copyWith({
  String? groupChatsCollectionName,
  String? chatsCollectionName,
  String? messagesCollectionName,
  String? usersCollectionName,
  String? chatsMetaDataCollectionName,
  String? userChatsCollectionName,
}) =>
    FirebaseChatOptions(
      groupChatsCollectionName:
          groupChatsCollectionName ?? this.groupChatsCollectionName,
      chatsCollectionName: chatsCollectionName ?? this.chatsCollectionName,
      messagesCollectionName:
          messagesCollectionName ?? this.messagesCollectionName,
      usersCollectionName: usersCollectionName ?? this.usersCollectionName,
      chatsMetaDataCollectionName:
          chatsMetaDataCollectionName ?? this.chatsMetaDataCollectionName,
      userChatsCollectionName:
          userChatsCollectionName ?? this.userChatsCollectionName,
    );