ConfigEntity constructor

ConfigEntity({
  1. bool? isDebug,
  2. bool? isLog,
  3. String? host,
  4. bool? encryptedHeader,
  5. String? prdId,
  6. String? gdtAppId,
  7. String? gdtAppKey,
  8. String? csjAdAppId,
  9. String? gdtAdAppId,
  10. String? ksAdAppId,
})

Implementation

ConfigEntity(
    {bool? isDebug,
    bool? isLog,
    String? host,
    bool? encryptedHeader,
    String? prdId,
    String? gdtAppId,
    String? gdtAppKey,
    String? csjAdAppId,
    String? gdtAdAppId,
    String? ksAdAppId}) {
  _isDebug = isDebug;
  _isLog = isLog;
  _host = host;
  _prdId = prdId;
  _encryptedHeader = encryptedHeader;
  _gdtAppId = gdtAppId;
  _gdtAppKey = gdtAppKey;
  _csjAdAppId = csjAdAppId;
  _gdtAdAppId = gdtAdAppId;
  _ksAdAppId = ksAdAppId;
}