LabelValue.fromJson constructor

LabelValue.fromJson(
  1. Map json_
)

Implementation

LabelValue.fromJson(core.Map json_)
  : this(
      boolValue: json_['boolValue'] as core.bool?,
      int64Value: json_['int64Value'] as core.String?,
      stringValue: json_['stringValue'] as core.String?,
    );