toJson method
Implementation
Map<String, dynamic> toJson() {
final endTimecode = this.endTimecode;
final startTimecode = this.startTimecode;
return {
if (endTimecode != null) 'endTimecode': endTimecode,
if (startTimecode != null) 'startTimecode': startTimecode,
};
}