EffectiveTag.fromJson constructor

EffectiveTag.fromJson(
  1. Map json_
)

Implementation

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