toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  map['showHeader'] = _showHeader;
  map['showConnectLoanText'] = _showConnectLoanText;
  map['championName'] = _championName;
  map['landingUrl'] = _landingUrl;
  map['updateCredentials'] = _updateCredentials;
  map['loanServicerId'] = _loanServicerId;
  map['loanAccountId'] = _loanAccountId;
  map['platformBenefitText1'] = _platformBenefitText1;
  map['platformBenefitText2'] = _platformBenefitText2;
  map['platformBenefitText3'] = _platformBenefitText3;
  map['primary-color3'] = _primaryColor3;
  map['transparentImageUrl'] = _transparentImageUrl;
  map['module'] = _module;
  map['moduleId'] = _moduleId;
  return map;
}