copyWith method

ToggleSupergroupIsForum copyWith({
  1. int? supergroupId,
  2. bool? isForum,
})

Implementation

ToggleSupergroupIsForum copyWith({
  int? supergroupId,
  bool? isForum,
}) =>
    ToggleSupergroupIsForum(
      supergroupId: supergroupId ?? this.supergroupId,
      isForum: isForum ?? this.isForum,
    );