ContentPropertyExpandable.fromJson constructor

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

Implementation

factory ContentPropertyExpandable.fromJson(Map<String, Object?> json) {
  return ContentPropertyExpandable(
    content: json[r'content'] as String?,
    additionalProperties: json[r'additionalProperties'] as String?,
  );
}