ContentPropertyCreateNoKey.fromJson constructor

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

Implementation

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