copyWith method

ReportSupergroupSpam copyWith({
  1. int? supergroupId,
  2. List<int>? messageIds,
})

Implementation

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