parseTags static method

List<TagEpc> parseTags(
  1. String str
)

Implementation

static List<TagEpc> parseTags(String str) =>
    List<TagEpc>.from(json.decode(str).map((x) => TagEpc.fromMap(x)));