copyWith method
Implementation
@override
PushMessageContentPhoto copyWith({
  Photo? photo,
  String? caption,
  bool? isSecret,
  bool? isPinned,
}) =>
    PushMessageContentPhoto(
      photo: photo ?? this.photo,
      caption: caption ?? this.caption,
      isSecret: isSecret ?? this.isSecret,
      isPinned: isPinned ?? this.isPinned,
    );