copyWith method

SetSupergroupUnrestrictBoostCount copyWith({
  1. int? supergroupId,
  2. int? unrestrictBoostCount,
})

Implementation

SetSupergroupUnrestrictBoostCount copyWith({
  int? supergroupId,
  int? unrestrictBoostCount,
}) => SetSupergroupUnrestrictBoostCount(
  supergroupId: supergroupId ?? this.supergroupId,
  unrestrictBoostCount: unrestrictBoostCount ?? this.unrestrictBoostCount,
);