TagFilterList.fromJson constructor

TagFilterList.fromJson(
  1. Map json_
)

Implementation

TagFilterList.fromJson(core.Map json_)
    : this(
        tags: json_.containsKey('tags')
            ? (json_['tags'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );