copyWith method

GetChatFolder copyWith({
  1. int? chatFolderId,
})

Implementation

GetChatFolder copyWith({
  int? chatFolderId,
}) =>
    GetChatFolder(
      chatFolderId: chatFolderId ?? this.chatFolderId,
    );