import 'package:mangayomi/models/manga.dart'; import 'package:mangayomi/models/track_search.dart'; class TrackLibrarySection { String name; Future?> Function() func; ItemType itemType; int syncId; bool isSearch; TrackLibrarySection({ required this.name, required this.func, required this.syncId, this.itemType = ItemType.manga, this.isSearch = false, }); }