toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appLinkData = this.appLinkData;
final callbackOptions = this.callbackOptions;
final classTemplateInfo = this.classTemplateInfo;
final enableSmartTap = this.enableSmartTap;
final id = this.id;
final imageModulesData = this.imageModulesData;
final linksModuleData = this.linksModuleData;
final merchantLocations = this.merchantLocations;
final messages = this.messages;
final multipleDevicesAndHoldersAllowedStatus =
this.multipleDevicesAndHoldersAllowedStatus;
final redemptionIssuers = this.redemptionIssuers;
final securityAnimation = this.securityAnimation;
final textModulesData = this.textModulesData;
final valueAddedModuleData = this.valueAddedModuleData;
final viewUnlockRequirement = this.viewUnlockRequirement;
return {
'appLinkData': ?appLinkData,
'callbackOptions': ?callbackOptions,
'classTemplateInfo': ?classTemplateInfo,
'enableSmartTap': ?enableSmartTap,
'id': ?id,
'imageModulesData': ?imageModulesData,
'linksModuleData': ?linksModuleData,
'merchantLocations': ?merchantLocations,
'messages': ?messages,
'multipleDevicesAndHoldersAllowedStatus':
?multipleDevicesAndHoldersAllowedStatus,
'redemptionIssuers': ?redemptionIssuers,
'securityAnimation': ?securityAnimation,
'textModulesData': ?textModulesData,
'valueAddedModuleData': ?valueAddedModuleData,
'viewUnlockRequirement': ?viewUnlockRequirement,
};
}