SubscriptionDetails.fromJson constructor

SubscriptionDetails.fromJson(
  1. Map json_
)

Implementation

SubscriptionDetails.fromJson(core.Map json_)
  : this(
      basePlanId: json_['basePlanId'] as core.String?,
      offerId: json_['offerId'] as core.String?,
      offerPhase: json_['offerPhase'] as core.String?,
      servicePeriodEndTime: json_['servicePeriodEndTime'] as core.String?,
      servicePeriodStartTime: json_['servicePeriodStartTime'] as core.String?,
    );