FluffyNode.fromJson constructor

FluffyNode.fromJson(
  1. Map<String, dynamic> json
)

from json

Implementation

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