MediaAdEntity constructor

const MediaAdEntity({
  1. String? name,
  2. required String adId,
  3. String? creativeId,
  4. int? podPosition,
  5. double? duration,
  6. bool? skippable,
})

Implementation

const MediaAdEntity(
    {this.name,
    required this.adId,
    this.creativeId,
    this.podPosition,
    this.duration,
    this.skippable});