CloudFiles.fromJson constructor
Factory constructor to create a CloudFiles object from JSON
Implementation
factory CloudFiles.fromJson(Map<String, dynamic> json) => CloudFiles(
json['id'],
json['title'],
json['filePath'],
DateTime.parse(json['fileDate'].toString()),
json['sizeInBytes'],
DateTime.parse(json['lastSyncDt'].toString()),
relativePath: json['relativePath'],
);