toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final placement = this.placement;
final placementType = this.placementType;
final resourceName = this.resourceName;
final targetUrl = this.targetUrl;
return {
'displayName': ?displayName,
'placement': ?placement,
'placementType': ?placementType,
'resourceName': ?resourceName,
'targetUrl': ?targetUrl,
};
}