ContentChildTypeExpandable.fromJson constructor

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

Implementation

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