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