AttributeValueMetadata.fromJson constructor

AttributeValueMetadata.fromJson(
  1. Map json_
)

Implementation

AttributeValueMetadata.fromJson(core.Map json_)
    : this(
        displayName: json_['displayName'] as core.String?,
        value: json_['value'],
      );