BaiduFileMetaItem.fromJson constructor

BaiduFileMetaItem.fromJson(
  1. dynamic json
)

Implementation

factory BaiduFileMetaItem.fromJson(json) {
  return BaiduFileMetaItem(
    category: json['category'],
    dlink: json['dlink'],
    filename: json['filename'],
    fsId: json['fs_id'],
    isdir: json['isdir'],
    path: json['path'],
    md5: json['md5'],
    operId: json['oper_id'],
    size: json['size'],
    serverCtime: json['server_ctime'],
    serverMtime: json['server_mtime'],
  );
}