toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endAt = this.endAt;
final note = this.note;
final startAt = this.startAt;
final videoId = this.videoId;
final videoPublishedAt = this.videoPublishedAt;
return {
'endAt': ?endAt,
'note': ?note,
'startAt': ?startAt,
'videoId': ?videoId,
'videoPublishedAt': ?videoPublishedAt?.toUtc().toIso8601String(),
};
}