CountResponse.fromJson constructor

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

Implementation

factory CountResponse.fromJson(Map<String, dynamic> json) {
  return CountResponse(count: json['count']);
}