copyWith method

ReportSupergroupAntiSpamFalsePositive copyWith({
  1. int? supergroupId,
  2. int? messageId,
})

Implementation

ReportSupergroupAntiSpamFalsePositive copyWith({
  int? supergroupId,
  int? messageId,
}) => ReportSupergroupAntiSpamFalsePositive(
  supergroupId: supergroupId ?? this.supergroupId,
  messageId: messageId ?? this.messageId,
);