Entitlement.fromJson constructor

Entitlement.fromJson(
  1. Map json_
)

Implementation

Entitlement.fromJson(core.Map json_)
    : this(
        detail: json_['detail'] as core.String?,
        expireTime: json_['expireTime'] as core.String?,
        productId: json_['productId'] as core.String?,
        subscriptionToken: json_['subscriptionToken'] as core.String?,
      );