SenzuPlayerAd constructor
Implementation
SenzuPlayerAd({
required this.child,
required this.durationToSkip,
required this.deepLink,
this.durationToStart,
this.fractionToStart,
this.durationToEnd = const Duration(seconds: 8),
}) : assert(
(fractionToStart != null) ^ (durationToStart != null),
'Exactly one of fractionToStart or durationToStart must be set.',
);