from json
factory FluffyNode.fromJson(Map<String, dynamic> json) => FluffyNode( text: json["text"] == null ? null : json["text"], );