setPostRollBreak method
Dynamically set the post-roll break duration. This method needs to be called with the duration in seconds. To disable the break call this with 0 value
secondsnumber of seconds for the post-roll break
Implementation
Future<void> setPostRollBreak(int seconds) async {
await _methodChannel.invokeMethod<void>('setPostRollBreak', seconds);
}