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