toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'modificationTime': modificationTime,
    'applicationVersion': applicationVersion,
    'tagsGroups': tagsGroups,
    'quickAccess': quickAccess,
    'smartFolders': smartFolders,
    'folders': folders.map((folder) => folder.toJson()).toList(),
  };
}