copyWith method

UpdateGroupCallMessagesDeleted copyWith({
  1. int? groupCallId,
  2. List<int>? messageIds,
})

Implementation

UpdateGroupCallMessagesDeleted copyWith({
  int? groupCallId,
  List<int>? messageIds,
}) => UpdateGroupCallMessagesDeleted(
  groupCallId: groupCallId ?? this.groupCallId,
  messageIds: messageIds ?? this.messageIds,
);