toJson method

Map<String, dynamic> toJson()

Implementation

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