EffectiveTagBindingCollection.fromJson constructor
      
      EffectiveTagBindingCollection.fromJson(
    
    
- Map json_
Implementation
EffectiveTagBindingCollection.fromJson(core.Map json_)
  : this(
      effectiveTags: (json_['effectiveTags']
              as core.Map<core.String, core.dynamic>?)
          ?.map((key, value) => core.MapEntry(key, value as core.String)),
      fullResourceName: json_['fullResourceName'] as core.String?,
      name: json_['name'] as core.String?,
    );