ContentCreateContainer.fromJson constructor

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

Implementation

factory ContentCreateContainer.fromJson(Map<String, Object?> json) {
  return ContentCreateContainer(
    id: json[r'id'],
    type: json[r'type'] as String? ?? '',
  );
}