toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (creativeFormat != null) 'creativeFormat': creativeFormat!,
      if (creativeSpecifications != null)
        'creativeSpecifications':
            creativeSpecifications!.map((value) => value.toJson()).toList(),
      if (skippableAdType != null) 'skippableAdType': skippableAdType!,
    };