toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final businessName = this.businessName;
  final callToActionText = this.callToActionText;
  final carouselCards = this.carouselCards;
  final description = this.description;
  final headline = this.headline;
  final logoImage = this.logoImage;
  return {
    'businessName': ?businessName,
    'callToActionText': ?callToActionText,
    'carouselCards': ?carouselCards,
    'description': ?description,
    'headline': ?headline,
    'logoImage': ?logoImage,
  };
}