GoogleCloudDatalabelingV1p2alpha1LabelStats.fromJson constructor
GoogleCloudDatalabelingV1p2alpha1LabelStats.fromJson(
- Map _json
Implementation
GoogleCloudDatalabelingV1p2alpha1LabelStats.fromJson(core.Map _json)
: this(
exampleCount: _json.containsKey('exampleCount')
? (_json['exampleCount'] as core.Map<core.String, core.dynamic>)
.map(
(key, item) => core.MapEntry(
key,
item as core.String,
),
)
: null,
);