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