NetworkTags.fromJson constructor

NetworkTags.fromJson(
  1. Map json_
)

Implementation

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