copyWith method

DeleteGroupCallMessages copyWith({
  1. int? groupCallId,
  2. List<int>? messageIds,
  3. bool? reportSpam,
})

Implementation

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