toJson method

Map<String, dynamic> toJson()

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 : ""
  };
}