toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataLinkId = this.dataLinkId;
final productLinkId = this.productLinkId;
final resourceName = this.resourceName;
final status = this.status;
final type = this.type;
final youtubeVideo = this.youtubeVideo;
return {
'dataLinkId': ?dataLinkId,
'productLinkId': ?productLinkId,
'resourceName': ?resourceName,
'status': ?status,
'type': ?type,
'youtubeVideo': ?youtubeVideo,
};
}