toJson method

Map<String, dynamic> toJson()

Implementation

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