EffectiveTagDetails.fromJson constructor

EffectiveTagDetails.fromJson(
  1. 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(),
    );