FileInfo.fromJson constructor

FileInfo.fromJson(
  1. Map json
)

Implementation

factory FileInfo.fromJson(Map json) {
  return FileInfo(
    category: json['category'],
    fsId: json['fs_id'],
    isdir: json['isdir'],
    localCtime: json['local_ctime'],
    localMtime: json['local_mtime'],
    md5: json['md5'],
    path: json['path'],
    serverCtime: json['server_ctime'],
    serverMtime: json['server_mtime'],
    size: json['size'],
  );
}