toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customKey = this.customKey;
final loyaltyFraction = this.loyaltyFraction;
final thirdPartyMetadata = this.thirdPartyMetadata;
final transactionUploadFraction = this.transactionUploadFraction;
return {
'customKey': ?customKey,
'loyaltyFraction': ?loyaltyFraction,
'thirdPartyMetadata': ?thirdPartyMetadata,
'transactionUploadFraction': ?transactionUploadFraction,
};
}