$SetLabelsRequest.fromJson constructor
$SetLabelsRequest.fromJson(
- Map json_
Implementation
$SetLabelsRequest.fromJson(core.Map json_)
: this(
labelFingerprint: json_['labelFingerprint'] as core.String?,
labels:
(json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
),
);