$PublisherReviewStatus.fromJson constructor

$PublisherReviewStatus.fromJson(
  1. Map json_
)

Implementation

$PublisherReviewStatus.fromJson(core.Map json_)
    : this(
        publisherName: json_.containsKey('publisherName')
            ? json_['publisherName'] as core.String
            : null,
        status: json_.containsKey('status')
            ? json_['status'] as core.String
            : null,
      );