SearchItem.fromJson constructor

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

Implementation

factory SearchItem.fromJson(Map<String, dynamic> json) {
  return SearchItem(
    json['category'],
    json['delete_type'],
    json['extent_tinyint1'],
    json['fs_id'],
    json['isdir'],
    json['local_ctime'],
    json['local_mtime'],
    json['md5'],
    json['oper_id'],
    json['owner_id'],
    json['path'],
    json['server_ctime'],
    json['server_filename'],
    json['server_mtime'],
    json['share'],
    json['size'],
    json['wpfile'],
  );
}