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