ContentChildrenExpandable.fromJson constructor

ContentChildrenExpandable.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}