AdditionalCommentDTO.fromJson constructor

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

Implementation

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