TagBindingCollection.fromJson constructor

TagBindingCollection.fromJson(
  1. Map json_
)

Implementation

TagBindingCollection.fromJson(core.Map json_)
  : this(
      etag: json_['etag'] as core.String?,
      fullResourceName: json_['fullResourceName'] as core.String?,
      name: json_['name'] as core.String?,
      tags: (json_['tags'] as core.Map<core.String, core.dynamic>?)?.map(
        (key, value) => core.MapEntry(key, value as core.String),
      ),
    );