toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final breadcrumb1 = this.breadcrumb1;
final breadcrumb2 = this.breadcrumb2;
final businessName = this.businessName;
final callToAction = this.callToAction;
final description = this.description;
final headline = this.headline;
final logoImage = this.logoImage;
return {
'breadcrumb1': ?breadcrumb1,
'breadcrumb2': ?breadcrumb2,
'businessName': ?businessName,
'callToAction': ?callToAction,
'description': ?description,
'headline': ?headline,
'logoImage': ?logoImage,
};
}