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