EffectiveTag.fromJson constructor

EffectiveTag.fromJson(
  1. Map json_
)

Implementation

EffectiveTag.fromJson(core.Map json_)
    : this(
        inherited: json_.containsKey('inherited')
            ? json_['inherited'] as core.bool
            : null,
        namespacedTagKey: json_.containsKey('namespacedTagKey')
            ? json_['namespacedTagKey'] as core.String
            : null,
        namespacedTagValue: json_.containsKey('namespacedTagValue')
            ? json_['namespacedTagValue'] as core.String
            : null,
        tagKey: json_.containsKey('tagKey')
            ? json_['tagKey'] as core.String
            : null,
        tagKeyParentName: json_.containsKey('tagKeyParentName')
            ? json_['tagKeyParentName'] as core.String
            : null,
        tagValue: json_.containsKey('tagValue')
            ? json_['tagValue'] as core.String
            : null,
      );