copyWith method
Implementation
MessageSponsor copyWith({
MessageSponsorType? type,
ChatPhotoInfo? photo,
String? info,
}) =>
MessageSponsor(
type: type ?? this.type,
photo: photo ?? this.photo,
info: info ?? this.info,
);