copyWith method
Implementation
@override
UpdateSupergroup copyWith({
Supergroup? supergroup,
dynamic extra,
int? clientId,
}) => UpdateSupergroup(
supergroup: supergroup ?? this.supergroup,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);