SubscriptionContentDetails.fromJson constructor

SubscriptionContentDetails.fromJson(
  1. Map json_
)

Implementation

SubscriptionContentDetails.fromJson(core.Map json_)
    : this(
        activityType: json_['activityType'] as core.String?,
        newItemCount: json_['newItemCount'] as core.int?,
        totalItemCount: json_['totalItemCount'] as core.int?,
      );