toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentOwner = this.contentOwner;
final timeLinked = this.timeLinked;
return {
'contentOwner': ?contentOwner,
'timeLinked': ?timeLinked?.toUtc().toIso8601String(),
};
}