ConfigEntity constructor

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

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;
}