Cache.fromJson constructor

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

Implementation

factory Cache.fromJson(Map<String, dynamic> json) {
  return Cache(
    badFiles: json['bad_files'] ?? {},
    hashfield: json['hashfield'],
  );
}