toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.stopClosedCaptions != null) {
json[r'stop_closed_captions'] = this.stopClosedCaptions;
} else {
json[r'stop_closed_captions'] = null;
}
return json;
}