copyWith method
Implementation
SetPinnedChats copyWith({
  ChatList? chatList,
  List<int>? chatIds,
}) =>
    SetPinnedChats(
      chatList: chatList ?? this.chatList,
      chatIds: chatIds ?? this.chatIds,
    );SetPinnedChats copyWith({
  ChatList? chatList,
  List<int>? chatIds,
}) =>
    SetPinnedChats(
      chatList: chatList ?? this.chatList,
      chatIds: chatIds ?? this.chatIds,
    );