listFromJson static method

List<Comment> listFromJson(
  1. String str
)

Implementation

static List<Comment> listFromJson(String str) {
  final data = json.decode(str);
  return List<Comment>.from(data.map((item) => Comment.fromJson(item)));
}