Chapter.fromJson constructor

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

Implementation

Chapter.fromJson(Map<String, dynamic> json) : super.fromJson(json){
  id = json['id'];
  name = json['name'];
}