ContentCreateSpaceDescriptionExpandable.fromJson constructor

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

Implementation

factory ContentCreateSpaceDescriptionExpandable.fromJson(
    Map<String, Object?> json) {
  return ContentCreateSpaceDescriptionExpandable(
    view: json[r'view'] as String?,
    plain: json[r'plain'] as String?,
  );
}