copyWith method

BoostChat copyWith({
  1. int? chatId,
  2. List<int>? slotIds,
})

Implementation

BoostChat copyWith({int? chatId, List<int>? slotIds}) => BoostChat(
  chatId: chatId ?? this.chatId,
  slotIds: slotIds ?? this.slotIds,
);