updateAdData method
void
updateAdData()
Implementation
void updateAdData(String? newTitle, String? newDescription, String? newLogo,
String? newBanner, String? newCTA) {
_title = newTitle;
_description = newDescription;
_logo = newLogo;
_bannerImageUrl = newBanner;
_callToActionText = newCTA;
}