ConfigEntity constructor
ConfigEntity({})
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;
}