$ParentEntityFilter.fromJson constructor
$ParentEntityFilter.fromJson(
- Map json_
Implementation
$ParentEntityFilter.fromJson(core.Map json_)
: this(
fileType: (json_['fileType'] as core.List?)
?.map((value) => value as core.String)
.toList(),
filterIds: (json_['filterIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
filterType: json_['filterType'] as core.String?,
);