ContentChildrenExpandable.fromJson constructor
Implementation
factory ContentChildrenExpandable.fromJson(Map<String, Object?> json) {
return ContentChildrenExpandable(
attachment: json[r'attachment'] as String?,
comment: json[r'comment'] as String?,
page: json[r'page'] as String?,
);
}