toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final loyaltyTier = this.loyaltyTier;
final pointBalance = this.pointBalance;
final userIdentifier = this.userIdentifier;
return {
'loyaltyTier': ?loyaltyTier,
'pointBalance': ?pointBalance,
'userIdentifier': ?userIdentifier,
};
}