Reciter.fromJson constructor

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

Implementation

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