toJson method
Converts instance of Customization to json
Implementation
Map<String, dynamic> toJson() {
return {
"title": this.title != null ? this.title : "",
"description": this.description != null ? this.description : "",
"logo": this.logo != null ? this.logo : ""
};
}