GetSubscriptionOfferRequest.fromJson constructor
GetSubscriptionOfferRequest.fromJson(
- Map json_
Implementation
GetSubscriptionOfferRequest.fromJson(core.Map json_)
: this(
basePlanId: json_.containsKey('basePlanId')
? json_['basePlanId'] as core.String
: null,
offerId: json_.containsKey('offerId')
? json_['offerId'] as core.String
: null,
packageName: json_.containsKey('packageName')
? json_['packageName'] as core.String
: null,
productId: json_.containsKey('productId')
? json_['productId'] as core.String
: null,
);