FileLabelInfo.fromJson constructor
FileLabelInfo.fromJson(
- Map json_
Implementation
FileLabelInfo.fromJson(core.Map json_)
: this(
labels: json_.containsKey('labels')
? (json_['labels'] as core.List)
.map((value) => Label.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);