SectionDTO.fromJson constructor

SectionDTO.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SectionDTO.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
  title = json['title'];
  content = json['content'];
}