toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"path": path,
"directories": List<dynamic>.from(directories.map((UFileManagerEntryResponse x) => x.toMap())),
"files": List<dynamic>.from(files.map((UFileManagerEntryResponse x) => x.toMap())),
"totalSize": totalSize,
};