RevokeSubscriptionPurchaseRequest.fromJson constructor

RevokeSubscriptionPurchaseRequest.fromJson(
  1. 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,
    );