ContentPropertyCreate.fromJson constructor

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

Implementation

factory ContentPropertyCreate.fromJson(Map<String, Object?> json) {
  return ContentPropertyCreate(
    key: json[r'key'] as String? ?? '',
    value: json[r'value'],
  );
}