ListEffectiveTagsResponse.fromJson constructor

ListEffectiveTagsResponse.fromJson(
  1. Map json_
)

Implementation

ListEffectiveTagsResponse.fromJson(core.Map json_)
    : this(
        effectiveTags: json_.containsKey('effectiveTags')
            ? (json_['effectiveTags'] as core.List)
                .map((value) => EffectiveTag.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );