fromJson static method
Implementation
static NestedContent fromJson(Map<String, dynamic> json) {
return NestedContent(
type: json['type'],
content: json['content'],
);
}
static NestedContent fromJson(Map<String, dynamic> json) {
return NestedContent(
type: json['type'],
content: json['content'],
);
}