toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final anonAllowed = this.anonAllowed;
final apiProductName = this.apiProductName;
final categoryIds = this.categoryIds;
final description = this.description;
final edgeAPIProductName = this.edgeAPIProductName;
final graphqlEndpointUrl = this.graphqlEndpointUrl;
final graphqlSchema = this.graphqlSchema;
final graphqlSchemaDisplayName = this.graphqlSchemaDisplayName;
final id = this.id;
final imageUrl = this.imageUrl;
final modified = this.modified;
final published = this.published;
final requireCallbackUrl = this.requireCallbackUrl;
final siteId = this.siteId;
final specId = this.specId;
final title = this.title;
final visibility = this.visibility;
return {
'anonAllowed': ?anonAllowed,
'apiProductName': ?apiProductName,
'categoryIds': ?categoryIds,
'description': ?description,
'edgeAPIProductName': ?edgeAPIProductName,
'graphqlEndpointUrl': ?graphqlEndpointUrl,
'graphqlSchema': ?graphqlSchema,
'graphqlSchemaDisplayName': ?graphqlSchemaDisplayName,
'id': ?id,
'imageUrl': ?imageUrl,
'modified': ?modified,
'published': ?published,
'requireCallbackUrl': ?requireCallbackUrl,
'siteId': ?siteId,
'specId': ?specId,
'title': ?title,
'visibility': ?visibility,
};
}