LivePreRollConfiguration.fromJson constructor
Implementation
factory LivePreRollConfiguration.fromJson(Map<String, dynamic> json) {
return LivePreRollConfiguration(
adDecisionServerUrl: json['AdDecisionServerUrl'] as String?,
maxDurationSeconds: json['MaxDurationSeconds'] as int?,
);
}