categoryFromJson function

List<Category> categoryFromJson(
  1. String str
)

Implementation

List<Category> categoryFromJson(String str) => List<Category>.from(json.decode(str).map((x) => Category.fromJson(x)));