EffectiveTagDetails.fromJson constructor
EffectiveTagDetails.fromJson(
- Map json_
Implementation
EffectiveTagDetails.fromJson(core.Map json_)
: this(
attachedResource: json_.containsKey('attachedResource')
? json_['attachedResource'] as core.String
: null,
effectiveTags: json_.containsKey('effectiveTags')
? (json_['effectiveTags'] as core.List)
.map((value) => Tag.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);