THEOplayerConfig constructor
THEOplayerConfig({
- String? license,
- String? licenseUrl,
- AndroidConfig? androidConfiguration,
- FullscreenConfig? fullscreenConfiguration,
- TheoLiveConfiguration? theolive,
Implementation
THEOplayerConfig({String? license, String? licenseUrl, AndroidConfig? androidConfiguration, FullscreenConfig? fullscreenConfiguration, TheoLiveConfiguration? theolive,}) {
_license = license;
_licenseUrl = licenseUrl;
if (androidConfiguration != null) {
_androidConfig = androidConfiguration;
}
if (fullscreenConfiguration != null) {
_fullscreenConfig = fullscreenConfiguration;
}
if (theolive != null) {
_theoLive = theolive;
}
}