LiveBroadcastMonetizationDetails.fromJson constructor
LiveBroadcastMonetizationDetails.fromJson(
- Map json_
Implementation
LiveBroadcastMonetizationDetails.fromJson(core.Map json_)
: this(
cuepointSchedule: json_.containsKey('cuepointSchedule')
? CuepointSchedule.fromJson(
json_['cuepointSchedule']
as core.Map<core.String, core.dynamic>,
)
: null,
);