ConfigEntity.fromJson constructor

ConfigEntity.fromJson(
  1. 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'];
}