PlatformSummary.fromJson constructor

PlatformSummary.fromJson(
  1. Map json_
)

Implementation

PlatformSummary.fromJson(core.Map json_)
    : this(
        betterAdsStatus: json_['betterAdsStatus'] as core.String?,
        enforcementTime: json_['enforcementTime'] as core.String?,
        filterStatus: json_['filterStatus'] as core.String?,
        lastChangeTime: json_['lastChangeTime'] as core.String?,
        region: (json_['region'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        reportUrl: json_['reportUrl'] as core.String?,
        underReview: json_['underReview'] as core.bool?,
      );