THEOplayerConfig constructor

THEOplayerConfig({
  1. String? license,
  2. String? licenseUrl,
  3. AndroidConfig? androidConfiguration,
  4. 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;
  }
}