TagBinding.fromJson constructor

TagBinding.fromJson(
  1. Map json_
)

Implementation

TagBinding.fromJson(core.Map json_)
    : this(
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        parent: json_.containsKey('parent')
            ? json_['parent'] as core.String
            : null,
        tagValue: json_.containsKey('tagValue')
            ? json_['tagValue'] as core.String
            : null,
        tagValueNamespacedName: json_.containsKey('tagValueNamespacedName')
            ? json_['tagValueNamespacedName'] as core.String
            : null,
      );