Dims.fromJson constructor

Dims.fromJson(
  1. dynamic json
)

Implementation

Dims.fromJson(dynamic json) {
  _showHeader = json['showHeader'];
  _showConnectLoanText = json['showConnectLoanText'];
  _championName = json['championName'];
  _landingUrl = json['landingUrl'];
  _updateCredentials = json['updateCredentials'];
  _loanServicerId = json['loanServicerId'];
  _loanAccountId = json['loanAccountId'];
  _platformBenefitText1 = json['platformBenefitText1'];
  _platformBenefitText2 = json['platformBenefitText2'];
  _platformBenefitText3 = json['platformBenefitText3'];
  _primaryColor3 = json['primary-color3'];
  _transparentImageUrl = json['transparentImageUrl'];
  _module = json['module'];
  _moduleId = json['moduleId'];
}