Meta.fromJson constructor

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

Implementation

factory Meta.fromJson(Map<String, dynamic> json) {
  return Meta(id: json['id'], type: json['type'], title: json['title'], score: json['score'], group: json['group']);
}