Count.fromJson constructor

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

Parse from a json

Implementation

factory Count.fromJson(Map<String, dynamic> json) => Count(
  count: json['count'],
  extra: json['@extra'],
  clientId: json['@client_id'],
);