copyWith method
Implementation
ToggleSupergroupUsernameIsActive copyWith({
int? supergroupId,
String? username,
bool? isActive,
}) =>
ToggleSupergroupUsernameIsActive(
supergroupId: supergroupId ?? this.supergroupId,
username: username ?? this.username,
isActive: isActive ?? this.isActive,
);