ConfigEntity constructor
ConfigEntity({})
Implementation
ConfigEntity({bool? isDebug, bool? isLog, String? host, bool? encryptedHeader, String? prdId, String? gdtAppId, String? gdtAppKey}) {
_isDebug = isDebug;
_isLog = isLog;
_host = host;
_prdId = prdId;
_encryptedHeader = encryptedHeader;
_gdtAppId = gdtAppId;
_gdtAppKey = gdtAppKey;
}