toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final channelId = this.channelId;
final durationMillis = this.durationMillis;
final id = this.id;
final resourceName = this.resourceName;
final title = this.title;
return {
'channelId': ?channelId,
'durationMillis': ?durationMillis,
'id': ?id,
'resourceName': ?resourceName,
'title': ?title,
};
}