$ParentEntityFilter.fromJson constructor

$ParentEntityFilter.fromJson(
  1. 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?,
      );