ManageLoyaltyCustomerMatchRequest.fromJson constructor
ManageLoyaltyCustomerMatchRequest.fromJson(
- Map json_
Implementation
ManageLoyaltyCustomerMatchRequest.fromJson(core.Map json_)
: this(
loyaltyCustomer: json_.containsKey('loyaltyCustomer')
? LoyaltyCustomer.fromJson(
json_['loyaltyCustomer'] as core.Map<core.String, core.dynamic>,
)
: null,
);