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