RecommendationCreative.fromJson constructor

RecommendationCreative.fromJson(
  1. Map json_
)

Implementation

RecommendationCreative.fromJson(core.Map json_)
    : this(
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
        uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
      );