fromJson method

RenderTree fromJson (Map<String, dynamic> json)

Deserializes the result from JSON.

Implementation

static RenderTree fromJson(Map<String, dynamic> json) {
  return RenderTree(json['tree']);
}