toJson method
Implementation
@override
Map<String, dynamic> toJson() {
final Map<String, dynamic> json = super.toJson();
json['default_image'] = defaultImage.toJson();
json['title'] = title.toJson();
json['description'] = description.toJson();
json['confirmation_message'] = confirmationMessage.toJson();
return json;
}