ConfigEntity.fromJson constructor
ConfigEntity.fromJson(
- dynamic json
Implementation
ConfigEntity.fromJson(dynamic json) {
_isDebug = json['isDebug'];
_isLog = json['isLog'];
_host = json['host'];
_prdId = json['prdId'];
_encryptedHeader = json["encryptedHeader"];
_gdtAppId = json['gdtAppId'];
_gdtAppKey = json['gdtAppKey'];
}