THEOplayerConfig constructor
THEOplayerConfig({
- String? license,
- String? licenseUrl,
- AndroidConfig? androidConfiguration,
- FullscreenConfig? fullscreenConfiguration,
Implementation
THEOplayerConfig({String? license, String? licenseUrl, AndroidConfig? androidConfiguration, FullscreenConfig? fullscreenConfiguration}) {
_license = license;
_licenseUrl = licenseUrl;
if (androidConfiguration != null) {
androidConfig = androidConfiguration;
}
if (fullscreenConfiguration != null) {
fullscreenConfig = fullscreenConfiguration;
}
}