Tag.fromJson constructor

Tag.fromJson(
  1. Map json_
)

Implementation

Tag.fromJson(core.Map json_)
  : this(
      tagKey: json_['tagKey'] as core.String?,
      tagKeyId: json_['tagKeyId'] as core.String?,
      tagValue: json_['tagValue'] as core.String?,
      tagValueId: json_['tagValueId'] as core.String?,
    );