ValueInfo.fromJson constructor

ValueInfo.fromJson(
  1. Map json_
)

Implementation

ValueInfo.fromJson(core.Map json_)
  : this(
      annotation: json_['annotation'] as core.String?,
      overriddenValue: json_['overriddenValue'] as core.String?,
      value: json_['value'] as core.String?,
    );