TagBindingCollection.fromJson constructor
TagBindingCollection.fromJson(
- 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),
),
);