Collection.fromJson constructor

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

Implementation

factory Collection.fromJson(Map<String, dynamic> json) {
  return Collection(verified: json["verified"], key: json["key"]);
}